Minor comment change.
This commit is contained in:
parent
7d687684aa
commit
73b4cc0897
2 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue