pandoc-3.6.4: test/command/7778.md
Here the thing to remember is that block level structure indications
take precedence over inline level structure indications:
```
% pandoc
Term
: Def
<!--
: comment def
-->
^D
<dl>
<dt>Term</dt>
<dd>
Def <!–
</dd>
<dd>
comment def –>
</dd>
</dl>
```
```
% pandoc
Term
: Def
test <!--
: comment def
and -->
^D
<dl>
<dt>Term</dt>
<dd>
Def test <!–
</dd>
<dd>
comment def and –>
</dd>
</dl>
```
```
% pandoc
Term
: Def
`code
: comment def
more code`
^D
<dl>
<dt>Term</dt>
<dd>
Def `code
</dd>
<dd>
comment def more code`
</dd>
</dl>
```