Small fix to fix: Allow blank lines btw table and caption.

This commit is contained in:
John MacFarlane 2012-07-24 09:24:28 -07:00
parent da1e99c03a
commit 6da9d9bca5

View file

@ -966,6 +966,7 @@ table = try $ do
multilineTable False <|> simpleTable True <|>
simpleTable False <|> multilineTable True <|>
gridTable False <|> gridTable True <?> "table"
optional blanklines
caption <- if null frontCaption
then option [] tableCaption
else return frontCaption