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

Nested paragraphs not work correctly inside arbitrary html #214

Closed
m-architek opened this issue Oct 3, 2018 · 0 comments
Closed

Nested paragraphs not work correctly inside arbitrary html #214

m-architek opened this issue Oct 3, 2018 · 0 comments

Comments

@m-architek
Copy link
Contributor

Given markdown:

<div>
  Hello

  World
</div>

Current output:

<div>
  Hello

  World
</div>

Expected:

<div>
  <p>Hello</p>
  <p>World</p>
</div>

I think problem is missing paragraph rule regexp in BLOCK_SYNTAXES array (line 249)

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