aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLaurent P. René de Cotret <LaurentRDC@users.noreply.github.com>2020-08-08 01:45:47 -0400
committerGitHub <noreply@github.com>2020-08-07 22:45:47 -0700
commit499fc11fca83cf4991cb9bce223fa3d046d4fa68 (patch)
treefdb6f879fd549d86b38e4c2798d6cb902744c1c0 /src
parentbed62fcf17a38765d70fe4ab51ba1742f42fe056 (diff)
downloadpandoc-499fc11fca83cf4991cb9bce223fa3d046d4fa68.tar.gz
[Latex Reader] Table cell parser not consuming spaces correctly (#6597)
* Added test to replicate (#6596) * Table cell reader not consuming spaces correctly (#6596)
Diffstat (limited to 'src')
-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 af00813b6..9ab4b3cb8 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -2387,9 +2387,11 @@ parseTableRow envname prefsufs = do
parseTableCell :: PandocMonad m => LP m Cell
parseTableCell = do
+ spaces
updateState $ \st -> st{ sInTableCell = True }
cell' <- parseMultiCell <|> parseSimpleCell
updateState $ \st -> st{ sInTableCell = False }
+ spaces
return cell'
cellAlignment :: PandocMonad m => LP m Alignment