f268ae3035
Previously we created duplicate references for these in rendering RST. Closes #6194.
14 lines
167 B
Markdown
14 lines
167 B
Markdown
```
|
|
% pandoc -f markdown -t rst
|
|
image1: ![foo](x.png)
|
|
|
|
image2: ![foo](y.png)
|
|
^D
|
|
image1: |foo|
|
|
|
|
image2: |image1|
|
|
|
|
.. |foo| image:: x.png
|
|
.. |image1| image:: y.png
|
|
```
|
|
|