pandoc/test/command/4183.md
2017-12-23 09:42:04 +01:00

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:")]]
```