summaryrefslogtreecommitdiff
path: root/test/command/2549.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-08-25 22:04:57 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-25 22:04:57 -0700
commit1b3431a165309aad3a28a0e8a75755c299561280 (patch)
treefb9588dd9bb811d0c6c00368061fdc9d9c94d701 /test/command/2549.md
parentc9be2de5c1d6856531c497a1a0f919b030a5cb95 (diff)
LaTeX reader: improved support for \hyperlink, \hypertarget.
Closes #2549.
Diffstat (limited to 'test/command/2549.md')
-rw-r--r--test/command/2549.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/command/2549.md b/test/command/2549.md
new file mode 100644
index 000000000..8f4aea852
--- /dev/null
+++ b/test/command/2549.md
@@ -0,0 +1,38 @@
+```
+% pandoc -f latex -t native
+\hypertarget{foo}{%
+\section{A section}\label{foo}
+}
+^D
+[Header 1 ("foo",[],[]) [Str "A",Space,Str "section"]]
+```
+
+```
+% pandoc -f latex -t native
+\hypertarget{bar}{%
+\section{A section}\label{foo}
+}
+^D
+[Div ("bar",[],[])
+ [Header 1 ("foo",[],[]) [Str "A",Space,Str "section"]]]
+```
+
+```
+% pandoc -f latex -t native
+Bar \hypertarget{foo}{Foo}
+^D
+[Para [Str "Bar",Space,Span ("foo",[],[]) [Str "Foo"]]]
+```
+
+```
+% pandoc -f latex -t native
+\hypertarget{foo}{%
+\begin{verbatim}
+bar
+\end{verbatim}
+}
+^D
+[Div ("foo",[],[])
+ [CodeBlock ("",[],[]) "bar"]]
+```
+