Added ~ to the list of characters the markdown
writer should backslash-escape. git-svn-id: https://pandoc.googlecode.com/svn/trunk@765 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
4905ebadb3
commit
9ddd464a7e
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ wrappedMarkdown opts sect = do
|
|||
-- | Escape special characters for Markdown.
|
||||
escapeString :: String -> String
|
||||
escapeString = escapeStringUsing markdownEscapes
|
||||
where markdownEscapes = ('\160', " "):(backslashEscapes "`<\\*_^")
|
||||
where markdownEscapes = ('\160', " "):(backslashEscapes "`<\\*_^~")
|
||||
|
||||
-- | Convert bibliographic information into Markdown header.
|
||||
metaToMarkdown :: WriterOptions -> Meta -> State WriterState Doc
|
||||
|
|
Loading…
Add table
Reference in a new issue