aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression of single column tables (#540)Isaac Muse2017-01-261-0/+39
| | | | | | Single column tables are valid tables, so add back in the accidentally removed functionality of allowing single column tables, but with one exception -- table bodies should not render empty (an empty `<tbody>` is invalid HTML. Fixes #539.
* Better inline code escaping (#533)Isaac Muse2017-01-201-0/+7
| | | | | This aims to escape code in a more expected fashion. This handles when backticks are escaped and when the escapes before backticks are escaped.
* Tables: Improvements (#530)Isaac Muse2017-01-191-0/+31
| | | | | | | Tables now handle escaped pipes when testing, in table borders, and in the inline content. To achieve properly, a bug had to be fixed related to appending escaped chars to the Markdown class. Now appended chars only appear in the current instance. Lastly the first backtick in a table can be escaped rounding out the last corner case.
* Better handling of backticks in tables (#524)Isaac Muse2017-01-111-0/+10
| | | | At some point the logic of counting backticks and determining if they are odd or even was used to parse a row's text into cells. Unfortunately this approach broke expected code parsing logic in a table. We essentially traded one bug for another. This fixes table backtick handling and restores sane backtick logic while preserving existing fixes. (issue #449)
* lists are not tables - fixes #478 (#507)Adam Wood2016-10-261-2/+7
|
* Add a failing testcase for issue #440.Dmitry Shachnev2015-11-071-1/+7
|
* Fixed handling of table cell splitMustafa Haddara2015-10-241-1/+17
|
* updated tables testpieterprovoost2015-04-061-1/+1
|
* added support for zero row tablespieterprovoost2015-04-051-0/+3
|
* Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. ↵Waylan Limberg2011-06-291-0/+18
| | | | Thanks to skurfer for report and inital patch.
* Moved test dir back out of markdown lib. We don't need to install the tests ↵Waylan Limberg2010-02-121-0/+34
in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.