LaTeX writer: Don't escape $ in URL. Closes #1913.
This commit is contained in:
parent
6a0d4da382
commit
7050c26abc
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ stringToLaTeX ctx (x:xs) = do
|
|||
'€' -> "\\euro{}" ++ rest
|
||||
'{' -> "\\{" ++ rest
|
||||
'}' -> "\\}" ++ rest
|
||||
'$' -> "\\$" ++ rest
|
||||
'$' | not isUrl -> "\\$" ++ rest
|
||||
'%' -> "\\%" ++ rest
|
||||
'&' -> "\\&" ++ rest
|
||||
'_' | not isUrl -> "\\_" ++ rest
|
||||
|
|
Loading…
Add table
Reference in a new issue