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?
markdown needs an empty line before
</div>to handle the last paragraph as such.Sample file:
Output converted to HTML:
Could you fix this?