9b54b94612
fixes #4183
32 lines
513 B
Markdown
32 lines
513 B
Markdown
```
|
|
% pandoc -f html -t native
|
|
<figure>
|
|
<img src="foo" alt="bar">
|
|
</figure>
|
|
^D
|
|
[Para [Image ("",[],[]) [] ("foo","fig:")]]
|
|
```
|
|
|
|
```
|
|
% pandoc -f html -t native
|
|
<figure>
|
|
<img src="foo" alt="bar">
|
|
<figcaption>
|
|
<div>
|
|
baz
|
|
</div>
|
|
</figcaption>
|
|
</figure>
|
|
^D
|
|
[Para [Image ("",[],[]) [Str "baz"] ("foo","fig:")]]
|
|
```
|
|
|
|
```
|
|
% pandoc -f html -t native
|
|
<figure>
|
|
<img src="foo">
|
|
<figcaption><p><em>baz</em></p></figcaption>
|
|
</figure>
|
|
^D
|
|
[Para [Image ("",[],[]) [Emph [Str "baz"]] ("foo","fig:")]]
|
|
```
|