diff options
Diffstat (limited to 'test')
-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"]] +``` |