kzykhys / Ciconia

A New Markdown parser for PHP5.4
http://ciconia.kzykhys.com/
MIT License
355 stars 31 forks source link

Extra <br> in lists #18

Closed joelcuevas closed 10 years ago

joelcuevas commented 10 years ago

For this:

$ciconia = new Ciconia();
$ciconia->addExtension(new Gfm\WhiteSpaceExtension());

$ciconia->render(<<<EOT
- One
  - Two
- Three
EOT
);

Is this the expected output?:

<ul>
  <li>One
    <br>
    <ul>
      <br>
      <li>Two</li>
      <br>
    </ul>
  </li>
  <li>Three</li>
</ul>

I think there are a couple extra <br> in the code.

kzykhys commented 10 years ago

It is a bug. Thank you for reporting.