Fix regression with tex_math_backslash
in Markdown reader.
Added regression test. Closes #7155.
This commit is contained in:
parent
e66bf891ec
commit
7bf4be04b0
1 changed files with 1 additions and 1 deletions
|
@ -1503,7 +1503,7 @@ inline = do
|
|||
'$' -> math
|
||||
'~' -> strikeout <|> subscript
|
||||
'<' -> autoLink <|> spanHtml <|> rawHtmlInline <|> ltSign
|
||||
'\\' -> escapedNewline <|> escapedChar <|> rawLaTeXInline'
|
||||
'\\' -> math <|> escapedNewline <|> escapedChar <|> rawLaTeXInline'
|
||||
'@' -> cite <|> exampleRef
|
||||
'"' -> smart
|
||||
'\'' -> smart
|
||||
|
|
Loading…
Reference in a new issue