aboutsummaryrefslogtreecommitdiff
path: root/test/command/figures-markdown.md
blob: 4d3ea418503ec005f6899fbc70f429ef4cdc70ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Figure float with caption at the figure level.

```
% pandoc -f native -t markdown
[Figure ("fig-id",[],[]) (Caption Nothing [Para [Str "Caption"]]) [Para [Image ("",[],[]) [] ("foo.png", "fig:")]]]

^D
<figure id="fig-id">
<p><img src="foo.png" title="fig:" /></p>
<figcaption><p>Caption</p></figcaption>
</figure>
```