Ms writre: Added some escapes.
This commit is contained in:
parent
b085b9f4a7
commit
1b967d9036
1 changed files with 4 additions and 2 deletions
|
@ -118,12 +118,14 @@ msEscapes :: Map.Map Char String
|
|||
msEscapes = Map.fromList $
|
||||
[ ('\160', "\\ ")
|
||||
, ('\'', "\\[aq]")
|
||||
, ('’', "'")
|
||||
, ('`', "\\`")
|
||||
, ('\8217', "'")
|
||||
, ('"', "\\\"")
|
||||
, ('\x2014', "\\[em]")
|
||||
, ('\x2013', "\\[en]")
|
||||
, ('\x2026', "\\&...")
|
||||
, ('|', "\\[u007C]") -- because we use | for inline math
|
||||
, ('~', "\\[ti]")
|
||||
, ('^', "\\[ha]")
|
||||
, ('-', "\\-")
|
||||
, ('@', "\\@")
|
||||
, ('\\', "\\\\")
|
||||
|
|
Loading…
Reference in a new issue