19 lines
411 B
Markdown
19 lines
411 B
Markdown
```
|
|
% pandoc -f markdown -t html
|
|
![caption](../media/rId25.jpg "title"){alt="alt"}
|
|
|
|
^D
|
|
<figure>
|
|
<img src="../media/rId25.jpg" title="title" alt="alt" /><figcaption>caption</figcaption>
|
|
</figure>
|
|
```
|
|
|
|
```
|
|
% pandoc -f markdown -t html
|
|
![caption](../media/rId25.jpg "title")
|
|
|
|
^D
|
|
<figure>
|
|
<img src="../media/rId25.jpg" title="title" alt="caption" /><figcaption aria-hidden="true">caption</figcaption>
|
|
</figure>
|
|
```
|