kramed icon indicating copy to clipboard operation
kramed copied to clipboard

Blockquotes seem to incorrectly transform the insides into html

Open mdayaram opened this issue 8 years ago • 0 comments

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.

mdayaram avatar Jan 14 '16 22:01 mdayaram