mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-24 01:06:30 +00:00
E.g.
`hello`
.. _hello:
paragraph
This is supported by putting "paragraph" in a Div with
id `hello`.
Closes #262.
381 B
381 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>
% pandoc -f rst
`hello`_ `goodbye`_
.. _hello:
.. _goodbye:
paragraph
^D
<p><a href="#hello">hello</a> <a href="#goodbye">goodbye</a></p>
<div id="hello">
<div id="goodbye">
<p>paragraph</p>
</div>
</div>