GitbookIO / kramed

A markdown (kramdown compatible) parser and compiler. Built for speed. (Fork of marked)
MIT License
223 stars 47 forks source link

Blockquotes seem to incorrectly transform the insides into html #33

Open mdayaram opened 8 years ago

mdayaram commented 8 years ago

Given the following input markdown:

> Quote!
> - Quote speaker

The actual outputted kramed HTML is the following:

<blockquote>
  <p>Quote!</p>
  <ul>
   <li>Quote speaker</li>
  </ul>
</blockquote>

When Kramdown ends up outputting the following instead (what I would expect):

<blockquote>
  <p>Quote!<br>
  - Quote speaker</p>
</blockquote>

We've tried flipping the smartLists flag on and off without seeing any change in this behavior.