mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-26 17:35:49 +00:00
Minor comment change.
This commit is contained in:
@@ -851,7 +851,6 @@ gridTable :: Bool -- ^ Headerless table
|
||||
-> GenParser Char ParserState Block
|
||||
gridTable = gridTableWith block tableCaption
|
||||
|
||||
-- TODO - add grid tables here...add tests for markdown grid tables...document markdown grid tables.
|
||||
table :: GenParser Char ParserState Block
|
||||
table = multilineTable False <|> simpleTable True <|>
|
||||
simpleTable False <|> multilineTable True <|>
|
||||
|
||||
@@ -655,7 +655,7 @@ simpleTableHeader headless = try $ do
|
||||
map removeLeadingTrailingSpace rawHeads
|
||||
return (heads, aligns, indices)
|
||||
|
||||
-- Parse a simple table with '---' header and one line per row.
|
||||
-- Parse a simple table.
|
||||
simpleTable :: Bool -- ^ Headerless table
|
||||
-> GenParser Char ParserState Block
|
||||
simpleTable headless = do
|
||||
|
||||
Reference in New Issue
Block a user