rtomayko / ronn

the opposite of roff
http://rtomayko.github.com/ronn/
Other
1.36k stars 84 forks source link

Inconsistency in Lists #82

Open tomschr opened 10 years ago

tomschr commented 10 years ago

I'm not sure if this qualifies as a "bug", but at least it is inconsistent and brings confusion.

For example, let's assume you need a list environment to describe some code. This could look like this:

* Line one:

  $ `foofoo` -l

* Line two:

 $ `foofoo` -t

which will be rendered like this:

Line one:

    $ `foofoo` -l

Line two:

    $ `foofoo` -t

However, I expected to get this output:

The strange thing is, that I get the bullets when I remove the colon from the 2nd entry (changing Line two: to Line two).

This is weird. I haven't found any hints in the original documentation of Markdown in regards to this issue.

Any hints?