pandoc/test/command/262.md
John MacFarlane 563c9c8687 RST reader: Handle chained link definitions.
For example,

    .. _hello:
    .. _goodbye: example.com

Here both `hello` and `goodbye` should link to `example.com`.

Fixes the first part of #262.
2017-06-27 14:35:03 +02:00

165 B

% pandoc -f rst
`hello`_ and `goodbye`_

.. _hello:
.. _goodbye: example.com
^D
<p><a href="example.com">hello</a> and <a href="example.com">goodbye</a></p>