yogthos / markdown-clj

Markdown parser in Clojure
Eclipse Public License 1.0
544 stars 121 forks source link

Close paragraphs before opening lists #60

Closed kfahy closed 9 years ago

kfahy commented 9 years ago

In cases where a list immediately follows a paragraph without an extra new line between them, the paragraph may never close, e.g.

foo
- bar

would convert to,

<p>foo<ul><li>bar</li></ul>
yogthos commented 9 years ago

looks great thanks

yogthos commented 9 years ago

just pushed out a new version to clojars with the fix