cbou / markdox

Markdox is a documentation generator based on Dox and Markdown. It parse Javascript and even Coffeescript.
http://cbou.github.com/markdox
230 stars 27 forks source link

Empty line between multiple @param #13

Closed maxkueng closed 10 years ago

maxkueng commented 10 years ago
@param {Array} ingredients Things that are inside
@param {Array} animals Friends

puts an empty line in the Markdown between the list items.

Produces:

* **Array** *ingredients* Things that are inside

* **Array** *animals* Friends

...instead of:

* **Array** *ingredients* Things that are inside
* **Array** *animals* Friends

Typically, a Markdown to HTML compiler will then create 2 <ul> elements instead of one.

cbou commented 10 years ago

Thanks, it's fixed now

maxkueng commented 10 years ago

<3