mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
Previously we created duplicate references for these in rendering RST. Closes #6194.
15 lines
167 B
Markdown
15 lines
167 B
Markdown
```
|
|
% pandoc -f markdown -t rst
|
|
image1: 
|
|
|
|
image2: 
|
|
^D
|
|
image1: |foo|
|
|
|
|
image2: |image1|
|
|
|
|
.. |foo| image:: x.png
|
|
.. |image1| image:: y.png
|
|
```
|
|
|