aboutsummaryrefslogtreecommitdiff
path: root/test/command/512.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/512.md')
-rw-r--r--test/command/512.md41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/command/512.md b/test/command/512.md
deleted file mode 100644
index a13c434f6..000000000
--- a/test/command/512.md
+++ /dev/null
@@ -1,41 +0,0 @@
-```
-% pandoc -f rst
-`click here`__ or `click here`__
-
-.. _link1: http://www.example.com/
-.. _link2: http://johnmacfarlane.net/pandoc/
-
-__ link1_
-__ link2_
-^D
-<p><a href="http://www.example.com/">click here</a> or <a href="http://johnmacfarlane.net/pandoc/">click here</a></p>
-```
-
-Multiple indirection:
-
-```
-% pandoc -f rst
-`click here`__
-
-.. _link1: link2_
-.. _link2: http://johnmacfarlane.net/pandoc/
-
-__ link1_
-^D
-<p><a href="http://johnmacfarlane.net/pandoc/">click here</a></p>
-```
-
-Loop detection:
-
-```
-% pandoc -f rst
-`click here`__
-
-.. _link1: link2_
-.. _link2: link1_
-
-__ link1_
-^D
-<p><a href="">click here</a></p>
-```
-