diff options
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 5e69347b6..279f90318 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -684,14 +684,14 @@ environments = M.fromList , ("equation*", mathEnv Nothing "equation*") , ("gather", mathEnv (Just "gathered") "gather") , ("gather*", mathEnv (Just "gathered") "gather*") - , ("multiline", mathEnv (Just "gathered") "multiline") - , ("multiline*", mathEnv (Just "gathered") "multiline*") - , ("eqnarray", mathEnv (Just "aligned*") "eqnarray") - , ("eqnarray*", mathEnv (Just "aligned*") "eqnarray*") - , ("align", mathEnv (Just "aligned*") "align") - , ("align*", mathEnv (Just "aligned*") "align*") - , ("alignat", mathEnv (Just "aligned*") "alignat") - , ("alignat*", mathEnv (Just "aligned*") "alignat*") + , ("multline", mathEnv (Just "gathered") "multline") + , ("multline*", mathEnv (Just "gathered") "multline*") + , ("eqnarray", mathEnv (Just "aligned") "eqnarray") + , ("eqnarray*", mathEnv (Just "aligned") "eqnarray*") + , ("align", mathEnv (Just "aligned") "align") + , ("align*", mathEnv (Just "aligned") "align*") + , ("alignat", mathEnv (Just "aligned") "alignat") + , ("alignat*", mathEnv (Just "aligned") "alignat*") ] letter_contents :: LP Blocks |