mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-25 01:36:45 +00:00
Markdown reader: Don't require blank line after grid table.
This fixes #6481, allowing grid tables to be enclosed in fenced divs with no intervening blank lines.
This commit is contained in:
@@ -1092,8 +1092,8 @@ removeOneLeadingSpace xs =
|
||||
Just (c, _) -> c == ' '
|
||||
|
||||
-- | Parse footer for a grid table.
|
||||
gridTableFooter :: Stream s m Char => ParserT s st m Text
|
||||
gridTableFooter = blanklines
|
||||
gridTableFooter :: Stream s m Char => ParserT s st m ()
|
||||
gridTableFooter = optional blanklines
|
||||
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user