pandoc/test/command/4420.md

23 lines
394 B
Markdown
Raw Normal View History

```
% pandoc -f native -t rst
[Image ("",["align-right"],[("width","100px")]) [Str "image"] ("foo.png","")]
^D
|image|
.. |image| image:: foo.png
:align: right
:width: 100px
```
```
% pandoc -f native -t rst
[Para [Image ("",["align-right"],[("width","100px")]) [Str "image"] ("foo.png","fig:test")]]
^D
.. figure:: foo.png
:alt: test
:align: right
:width: 100px
image
```