diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index c20efce38..b1d8a7432 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1689,8 +1689,8 @@ looseItem = do epigraph :: PandocMonad m => LP m Blocks epigraph = do - p1 <- grouped blocks - p2 <- grouped blocks + p1 <- grouped block + p2 <- grouped block return $ divWith ("", ["epigraph"], []) (p1 <> p2) resetCaption :: PandocMonad m => LP m () @@ -1771,7 +1771,7 @@ parbox = try $ do oldInTableCell <- sInTableCell <$> getState -- see #5711 updateState $ \st -> st{ sInTableCell = False } - res <- grouped blocks + res <- grouped block updateState $ \st -> st{ sInTableCell = oldInTableCell } return res |