Files
John MacFarlane be5bafcfc9 Markdown writer: Fix rendering of alerts.
We only properly handled the case where the alert started with
a paragraph, but it can start with a list or other block type.

Closes #11479.
2026-02-18 10:21:41 +01:00

344 B

% pandoc -f docbook -t gfm
<important>
<itemizedlist>
<listitem>
<simpara>Test.</simpara>
</listitem>
<listitem>
<simpara>Test 2.</simpara>
</listitem>
</itemizedlist>
</important>
^D
> [!IMPORTANT]
> - Test.
>
> - Test 2.
% pandoc -f gfm -t gfm
> [!IMPORTANT]
> - Test.
>
> - Test 2.
^D
> [!IMPORTANT]
> - Test.
>
> - Test 2.