diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-29 10:18:09 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-29 10:18:09 -0700 |
commit | c6d56f026f27519e913f64d843450c7a32f957fb (patch) | |
tree | 75a677c9273ddc0f8345bc0a1189316258952aa2 /src/Text | |
parent | 890d67bc2f1c67a2aea819cec4374cadcbcbd986 (diff) | |
download | pandoc-c6d56f026f27519e913f64d843450c7a32f957fb.tar.gz |
LaTeX reader: support breq math environments: dmath, dgroup, darray.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 5065cc81c..8a8b7dfb6 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1136,6 +1136,12 @@ inlineEnvironments = M.fromList [ , ("align*", mathEnvWith id (Just "aligned") "align*") , ("alignat", mathEnvWith id (Just "aligned") "alignat") , ("alignat*", mathEnvWith id (Just "aligned") "alignat*") + , ("dmath", mathEnvWith id Nothing "dmath") + , ("dmath*", mathEnvWith id Nothing "dmath*") + , ("dgroup", mathEnvWith id (Just "aligned") "dgroup") + , ("dgroup*", mathEnvWith id (Just "aligned") "dgroup*") + , ("darray", mathEnvWith id (Just "aligned") "darray") + , ("darray*", mathEnvWith id (Just "aligned") "darray*") ] inlineCommands :: PandocMonad m => M.Map Text (LP m Inlines) |