aboutsummaryrefslogtreecommitdiff
path: root/test/command/262.md
blob: 61af20ede523094f7e2acb423872b52447b728be (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
27
```
% 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>
```