mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-26 17:35:49 +00:00
HLint: use /=
This commit is contained in:
@@ -190,7 +190,7 @@ stringToLaTeX _ [] = return ""
|
||||
stringToLaTeX ctx (x:xs) = do
|
||||
opts <- gets stOptions
|
||||
rest <- stringToLaTeX ctx xs
|
||||
let ligatures = writerTeXLigatures opts && not (ctx == CodeString)
|
||||
let ligatures = writerTeXLigatures opts && (ctx /= CodeString)
|
||||
let isUrl = ctx == URLString
|
||||
when (x == '€') $
|
||||
modify $ \st -> st{ stUsesEuro = True }
|
||||
|
||||
Reference in New Issue
Block a user