aboutsummaryrefslogtreecommitdiff
path: root/tests/pipe-tables.txt
AgeCommit message (Collapse)AuthorFilesLines
2015-03-07Fixed pipe tables -- headerless tables are not allowed.John MacFarlane1-1/+3
GFM and PHP Markdown Extra pipe tables require headers. Previously pandoc allowed pipe tables not to include headers, and produced headerless pipe tables in Markdown output, but this was based on a misconception about pipe table syntax. This commit fixes this. Note: If you have been using headerless pipe tables, this may cause existing tables to break. Closes #1996.
2014-05-01Markdown reader: Make one-column pipe tables work.John MacFarlane1-0/+10
Closes #1218.
2013-03-02Added test for pipe table with spaces around header lines.John MacFarlane1-1/+1
2012-07-22Revised code for pipe tables.John MacFarlane1-0/+42
* All tables now require at least one body row. * Renamed from 'extra' to 'pipe' tables. * Moved functions from Parsing to Readers.Markdown. * Cleaned up code; revised to parse in one pass rather than parsing a raw string, splitting it, and parsing the components. * Allow pipe tables without pipes on the ends (as PHP Markdown Extra does).