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

empty line needed before </div> #1591

Closed
ousia opened this issue Aug 31, 2014 · 1 comment
Closed

empty line needed before </div> #1591

ousia opened this issue Aug 31, 2014 · 1 comment

Comments

@ousia
Copy link
Contributor

ousia commented Aug 31, 2014

markdown needs an empty line before </div> to handle the last paragraph as such.

Sample file:

<div class="first">
This is a paragraph.

This is another paragraph.
</div>

<div class="first">
This is a paragraph.

This is another paragraph.

</div>

Output converted to HTML:

<div class="first">
This is a paragraph.
</div>
<div class="first">
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</div>

Could you fix this?

@jgm jgm closed this as completed in 598d3ee Aug 31, 2014
@ousia
Copy link
Contributor Author

ousia commented Aug 31, 2014

Many thanks for your fast fix, John.

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