bhollis / maruku

A pure-Ruby Markdown-superset interpreter (Official Repo).
MIT License
500 stars 80 forks source link

list items not correctly converted #34

Closed fluxsaas closed 12 years ago

fluxsaas commented 13 years ago

the text:

    1.1 should not be a list item
    1.2 should not be a list item

was converted to an list

    <ul>
        <li> 1.1 should not be a list item</li>
        <li> 1.2 should not be a list item</li>
   <ul>

but should actualy be converted to simple paragraphs

      <p> 1.1 should not be a list item</p>
      <p> 1.2 should not be a list item</p>

or just one paragraph....

distler commented 13 years ago

Fixed on my Nokogiri branch.

bhollis commented 12 years ago

I've pulled @distler's fix.