mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-27 18:05:48 +00:00
LaTeX writer: Don't escape $ in URL. Closes #1913.
This commit is contained in:
@@ -206,7 +206,7 @@ stringToLaTeX ctx (x:xs) = do
|
||||
'€' -> "\\euro{}" ++ rest
|
||||
'{' -> "\\{" ++ rest
|
||||
'}' -> "\\}" ++ rest
|
||||
'$' -> "\\$" ++ rest
|
||||
'$' | not isUrl -> "\\$" ++ rest
|
||||
'%' -> "\\%" ++ rest
|
||||
'&' -> "\\&" ++ rest
|
||||
'_' | not isUrl -> "\\_" ++ rest
|
||||
|
||||
Reference in New Issue
Block a user