avdi / quarto

MIT License
469 stars 28 forks source link

Fix formatting #15

Closed tilsammans closed 11 years ago

tilsammans commented 11 years ago

GitHub's markdown doesn't allow code blocks inside a list. The README would show a 'ruby' string prepended to the documentation. I just moved it to an inline code block. Also fixed minor formatting.

sankage commented 11 years ago

GitHub markdown does allow code blocks in lists, you just have to put a line break in between and properly indent. Its like if you have multiple paragraphs in a list element.

1. Example

  ```ruby
  puts "example ruby"
  '``
2. second list element
  1. Example

    puts "example ruby"
  2. second list element
avdi commented 11 years ago

I think @saturnflyer got to it first...