aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index 5e46caedb..38e2435e3 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -2168,6 +2168,8 @@ parseTableRow envname prefsufs = do
contents <- mconcat <$>
many ( snd <$> withRaw (controlSeq "parbox" >> parbox) -- #5711
<|>
+ snd <$> withRaw (inlineEnvironment <|> dollarsMath)
+ <|>
(do notFollowedBy
(() <$ amp <|> () <$ lbreak <|> end_ envname)
count 1 anyTok) )