blob: 63bb2a96d8c160f0b457b9c78639bec44f0e72e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Figure float with caption at the figure level.
```
% pandoc -f native -t mediawiki
[Figure ("fig-id",[],[]) (Caption Nothing [Para [Str "Caption"]]) [Para [Image ("",[],[]) [] ("foo.png", "fig:")]]]
^D
<div id="fig-id" class="figure">
[[File:foo.png|thumb|none]]
</div>
```
|