We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
markdown needs an empty line before </div> to handle the last paragraph as such.
</div>
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?
The text was updated successfully, but these errors were encountered:
598d3ee
Many thanks for your fast fix, John.
Sorry, something went wrong.
No branches or pull requests
markdown needs an empty line before
</div>
to handle the last paragraph as such.Sample file:
Output converted to HTML:
Could you fix this?
The text was updated successfully, but these errors were encountered: