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

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

^D
.. figure:: foo.png
   name: fig-id
   :alt: fig:

   Caption
```