diff options
author | schrieveslaach <schrieveslaach@online.de> | 2017-04-26 12:03:07 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-04-26 12:03:07 +0200 |
commit | 81548960d52d6c3ca34aa5fa041e5aa8bae9481b (patch) | |
tree | 9db7158bc4fd5cd5d9116a3b48b2af7bc4486362 /src/Text/Pandoc/Readers | |
parent | 66b08391b38b0812112ff03d7610d4592c3a1017 (diff) | |
download | pandoc-81548960d52d6c3ca34aa5fa041e5aa8bae9481b.tar.gz |
LaTeX reader: Add support for \vdots (#3607)
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 3e5fae8fb..564d4e417 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -528,6 +528,7 @@ inlineCommands = M.fromList $ , ("textbf", extractSpaces strong <$> tok) , ("textnormal", extractSpaces (spanWith ("",["nodecor"],[])) <$> tok) , ("ldots", lit "…") + , ("vdots", lit "\8942") , ("dots", lit "…") , ("mdots", lit "…") , ("sim", lit "~") |