diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-08-25 22:04:57 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-25 22:04:57 -0700 |
commit | 1b3431a165309aad3a28a0e8a75755c299561280 (patch) | |
tree | fb9588dd9bb811d0c6c00368061fdc9d9c94d701 /test/command | |
parent | c9be2de5c1d6856531c497a1a0f919b030a5cb95 (diff) | |
download | pandoc-1b3431a165309aad3a28a0e8a75755c299561280.tar.gz |
LaTeX reader: improved support for \hyperlink, \hypertarget.
Closes #2549.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/2549.md | 38 |
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"]] +``` + |