diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-20 09:44:35 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-20 09:44:35 -0400 |
commit | 581fc0130b635123521471236cd7c391f8f260df (patch) | |
tree | a54ee6812645b06e09d40dd262b244767733f668 /tests/Tests/Writers | |
parent | 02e4b7da89cbf51c6de5f9ae842f76b4bd74669a (diff) | |
download | pandoc-581fc0130b635123521471236cd7c391f8f260df.tar.gz |
LaTeX writer: change braced backtick to \textasciigrave{}
Backticks in verbatim environments are converted to
open-single-quotes. This change makes them appear as backticks. This
corresponds to how we treat `'' in verbatim environments (with
\textquotesingle{}).
Diffstat (limited to 'tests/Tests/Writers')
-rw-r--r-- | tests/Tests/Writers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Tests/Writers/LaTeX.hs b/tests/Tests/Writers/LaTeX.hs index afab7d628..3dacaacd5 100644 --- a/tests/Tests/Writers/LaTeX.hs +++ b/tests/Tests/Writers/LaTeX.hs @@ -76,6 +76,6 @@ tests = [ testGroup "code blocks" , "single quotes" =: code "dog's" =?> "\\texttt{dog\\textquotesingle{}s}" , "backtick" =: - code "`nu?`" =?> "\\texttt{{`}nu?{`}}" + code "`nu?`" =?> "\\texttt{\\textasciigrave{}nu?\\textasciigrave{}}" ] ] |