mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-23 16:05:54 +00:00
12 lines
276 B
Markdown
12 lines
276 B
Markdown
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>
|
|
```
|