diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-01-19 11:39:27 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-01-19 11:39:27 -0800 |
commit | 62c395dafa467ea760cdc938993ef61379e07ace (patch) | |
tree | dcbbce9f6a76d2ef19d39565b353379365a072e3 /src/Text | |
parent | f019d3cc45e595710eff9a1c380dbcee9f02c93a (diff) | |
download | pandoc-62c395dafa467ea760cdc938993ef61379e07ace.tar.gz |
LaTeX reader: fixed parsing of tabular* environment.
This was just a typo in the source.
Closes #4279.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 6298e0b2f..3408201eb 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -2105,7 +2105,7 @@ environments = M.fromList resetCaption *> simpTable "longtable" False >>= addTableCaption) , ("table", env "table" $ resetCaption *> skipopts *> blocks >>= addTableCaption) - , ("tabular*", env "tabular" $ simpTable "tabular*" True) + , ("tabular*", env "tabular*" $ simpTable "tabular*" True) , ("tabularx", env "tabularx" $ simpTable "tabularx" True) , ("tabular", env "tabular" $ simpTable "tabular" False) , ("quote", blockQuote <$> env "quote" blocks) |