diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-19 16:34:28 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-19 16:34:28 -0400 |
commit | 9c1467e848bd7d9d45e0813716c3a4aef1964503 (patch) | |
tree | fba1c11b08d3865e36e5546029a4063d42bf144f /tests | |
parent | 5b5f55a710f0d1187cf3c859ff5c422bcb6b9619 (diff) | |
download | pandoc-9c1467e848bd7d9d45e0813716c3a4aef1964503.tar.gz |
Add test for backtick in verbatim.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests/Writers/LaTeX.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Tests/Writers/LaTeX.hs b/tests/Tests/Writers/LaTeX.hs index 4a1232db2..afab7d628 100644 --- a/tests/Tests/Writers/LaTeX.hs +++ b/tests/Tests/Writers/LaTeX.hs @@ -75,5 +75,7 @@ tests = [ testGroup "code blocks" "\\sout{\\texttt{foo} bar}" , "single quotes" =: code "dog's" =?> "\\texttt{dog\\textquotesingle{}s}" + , "backtick" =: + code "`nu?`" =?> "\\texttt{{`}nu?{`}}" ] ] |