ronn
ronn copied to clipboard
Inconsistency in Lists
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:
-
Line one:
$ `foofoo` -l -
Line two:
$ `foofoo` -t
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?