mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 03:47:20 +00:00
ebcae86cf4
This allows admonition elements (e.g. `<note>`) to work with gfm admonitions even if the `<title>` is not present. Closes #9569.
278 B
278 B
% pandoc -f docbook -t gfm
<note>
<para>Some content</para>
</note>
<para>Spacer.</para>
<note>
<title>A note with a title. Works, but the title is discarded.</title>
<para>Some content</para>
</note>
^D
> [!NOTE]
> Some content
Spacer.
> [!NOTE]
> Some content