blob: bda2acb35767e370a7b78bdecbe2e9b1270d328b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
```
% 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>
```
|