Closed
Description
I asked this in discussion #10417 but there was no response, so I'm creating an issue.
I think this is a bug in commonmark_x+implicit_figures
(the caption is empty, so it should be an image, not a figure?).
% pandoc -v
pandoc 3.5
% pandoc -f markdown <<<''
<p><img src="Cat.png" /></p>
% pandoc -f commonmark_x+implicit_figures <<<''
<figure>
<img src="Cat.png" />
<figcaption aria-hidden="true"></figcaption>
</figure>