diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-08 21:57:26 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-08 21:57:26 -0700 |
commit | 8cd1e00bbc50c0d5efc9c5fd08f0336d50c416f8 (patch) | |
tree | 28e7dd0262c405a12838d3b7a6700d53223fdeb2 /test/command | |
parent | 7d2ff7ed6d1cdd1b30d52e58decd830e1b8f819d (diff) | |
download | pandoc-8cd1e00bbc50c0d5efc9c5fd08f0336d50c416f8.tar.gz |
Add test - closes #3958.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/3958.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/3958.md b/test/command/3958.md new file mode 100644 index 000000000..1793dd05c --- /dev/null +++ b/test/command/3958.md @@ -0,0 +1,20 @@ +``` +% pandoc -f latex -t native +\texttt{"hi"} +^D +[Para [Code ("",[],[]) "\"hi\""]] +``` + +``` +% pandoc -f latex -t native +\texttt{``hi''} +^D +[Para [Code ("",[],[]) "\8220hi\8221"]] +``` + +``` +% pandoc -f latex -t native +\texttt{`hi'} +^D +[Para [Code ("",[],[]) "\8216hi\8217"]] +``` |