blob: 419b8b9f4d27af747c6eb20566ccf2ad7e8c808a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
```
% pandoc -f markdown -t markdown_strict
![My caption](./my-figure.jpg){width=500px}
## Header 2
^D
<figure>
<img src="./my-figure.jpg" width="500" alt="My caption" /><figcaption aria-hidden="true">My caption</figcaption>
</figure>
Header 2
--------
```
|