pandoc-3.10.1: test/command/4183.md
```
% pandoc -f html -t native
<figure>
<img src="foo" alt="bar">
</figure>
^D
[ Figure
( "" , [] , [] )
(Caption Nothing [])
[ Plain
[ Image ( "" , [] , [] ) [ Str "bar" ] ( "foo" , "" ) ]
]
]
```
```
% pandoc -f html -t native
<figure>
<img src="foo" alt="bar">
<figcaption>
<div>
baz
</div>
</figcaption>
</figure>
^D
[ Figure
( "" , [] , [] )
(Caption
Nothing [ Div ( "" , [] , [] ) [ Plain [ Str "baz" ] ] ])
[ Plain
[ Image ( "" , [] , [] ) [ Str "bar" ] ( "foo" , "" ) ]
]
]
```
```
% pandoc -f html -t native
<figure>
<img src="foo">
<figcaption><p><em>baz</em></p></figcaption>
</figure>
^D
[ Figure
( "" , [] , [] )
(Caption Nothing [ Para [ Emph [ Str "baz" ] ] ])
[ Plain [ Image ( "" , [] , [] ) [] ( "foo" , "" ) ] ]
]
```