diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-11-27 11:54:26 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-11-27 11:54:26 -0800 |
commit | f15965e205a5c11adca6b08c14c8fffccdcc9cc5 (patch) | |
tree | d7f6642f93c33d230e5e25b361b17c5f04db09a8 /src/Text/Pandoc/Writers/LaTeX.hs | |
parent | eac4abe36f705b852726eeceee928eb9ead6ceb0 (diff) | |
parent | 970f63c18a5caf2954e02200150a4bc051a74648 (diff) | |
download | pandoc-f15965e205a5c11adca6b08c14c8fffccdcc9cc5.tar.gz |
Merge branch 'master' into citeproc
Diffstat (limited to 'src/Text/Pandoc/Writers/LaTeX.hs')
-rw-r--r-- | src/Text/Pandoc/Writers/LaTeX.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/LaTeX.hs b/src/Text/Pandoc/Writers/LaTeX.hs index 5fa345760..0f5ae0eb2 100644 --- a/src/Text/Pandoc/Writers/LaTeX.hs +++ b/src/Text/Pandoc/Writers/LaTeX.hs @@ -110,6 +110,10 @@ stringToLaTeX = escapeStringUsing latexEscapes , ('[', "{[}") -- to avoid interpretation as , (']', "{]}") -- optional arguments , ('\160', "~") + , ('\x2018', "`") + , ('\x2019', "'") + , ('\x201C', "``") + , ('\x201D', "''") ] -- | Puts contents into LaTeX command. |