Explain the problem.
results in fruit in a separate paragraph outside the definition list:
<dl>
<dt>apple</dt>
<dd>
pomaceous
</dd>
</dl>
<p>fruit</p>
This is inconsistent with 4-space separated version
and from unordered list, where the second paragraph is correctly placed inside the list item:
<ul>
<li><p>pomaceous</p>
<p>fruit</p></li>
</ul>
I can open PR later.
Pandoc version?
pandoc version 3.7.0.2 on try.pandoc.org
Using the defaultpandoc --from markdown --to html5 --no-highlight
Explain the problem.
results in fruit in a separate paragraph outside the definition list:
This is inconsistent with 4-space separated version
apple : pomaceous fruitand from unordered list, where the second paragraph is correctly placed inside the list item:
- pomaceous fruitI can open PR later.
Pandoc version?
pandoc version 3.7.0.2 on try.pandoc.org
Using the default
pandoc --from markdown --to html5 --no-highlight