aboutsummaryrefslogtreecommitdiff
path: root/tests/pipe-tables.native
AgeCommit message (Collapse)AuthorFilesLines
2016-03-09Markdown reader: Improved pipe table parsing.John MacFarlane1-1/+15
Fixes #2765. Added test case.
2015-11-24Added bodyless pipe table test case.John MacFarlane1-1/+5
See #2556.
2015-10-30Pipe tables with long lines now get relative cell widths.John MacFarlane1-1/+12
If a pipe table contains a line longer than the column width (as set by `--columns` or 80 by default), relative widths are computed based on the widths of the separator lines relative to the column width. This should solve persistent problems with long pipe tables in LaTeX/PDF output, and give more flexibility for determining relative column widths in other formats, too. For narrower pipe tables, column widths of 0 are used, telling pandoc not to specify widths explicitly in output formats that permit this. Closes #2471.
2015-07-27Pipe tables: allow indented columns.John MacFarlane1-1/+9
Previously the left-hand column could not start with 4 or more spaces indent. This was inconvenient for right-aligned left columns. Note that the first (header column) must still have 3 or fewer spaces indentation, or the table will be treated as an indented code block.
2014-05-01Markdown reader: Make one-column pipe tables work.John MacFarlane1-1/+9
Closes #1218.
2012-08-01Major rewrite of markdown reader.John MacFarlane1-6/+6
* Use Builder's Inlines/Blocks instead of lists. * Return values in the reader monad, which are then run (at the end of parsing) against the final parser state. This allows links, notes, and example numbers to be resolved without a second parser pass. * An effect of using Builder is that everything is normalized automatically. * New exports from Text.Pandoc.Parsing: widthsFromIndices, NoteTable', KeyTable', Key', toKey', withQuoteContext, singleQuoteStart, singleQuoteEnd, doubleQuoteStart, doubleQuoteEnd, ellipses, apostrophe, dash * Updated opendocument tests. * Don't derive Show for ParserState. * Benchmarks: markdown reader takes 82% of the time it took before. Markdown writer takes 92% of the time (here the speedup is probably due to the fact that everything is normalized by default).
2012-07-22Revised code for pipe tables.John MacFarlane1-0/+70
* 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).