Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blockquotes seem to incorrectly transform the insides into html #33

Open
mdayaram opened this issue Jan 14, 2016 · 0 comments
Open

Blockquotes seem to incorrectly transform the insides into html #33

mdayaram opened this issue Jan 14, 2016 · 0 comments

Comments

@mdayaram
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant