Navigation Menu

Skip to content

Commit

Permalink
protect the double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
np committed Dec 6, 2011
1 parent 1b3e41e commit f97a00b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Language/LaTeX/Builder.hs
Expand Up @@ -826,11 +826,11 @@ rq = texCmdNoArg "rq"

-- | Left (opening) double quotes: ``.
ldq :: LatexItem
ldq = rawTex "``"
ldq = rawTex "{``}"

-- | Right (opening) double quotes: ''.
rdq :: LatexItem
rdq = rawTex "''"
rdq = rawTex "{''}"

-- | Double quote a LaTeX item.
dquote :: LatexItem -> LatexItem
Expand Down

0 comments on commit f97a00b

Please sign in to comment.