aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables.html
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression of single column tables (#540)Isaac Muse2017-01-261-2/+90
| | | | | | 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-1/+20
| | | | | 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-1/+73
| | | | | | | 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-1/+30
| | | | 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-1/+6
|
* Fix table alignment when seperator contains spaces (#489)eph2016-08-151-4/+4
| | | | | | | | | | * Fix table alignment when seperator contains spaces eg. seperator like "------ | :----- | :----: | -----: | ------" * Update tests for table * Delete the newline at the end of tables.html
* Add a failing testcase for issue #440.Dmitry Shachnev2015-11-071-0/+15
|
* Fixed handling of table cell splitMustafa Haddara2015-10-241-0/+67
|
* updated tables testpieterprovoost2015-04-061-1/+10
|
* Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. ↵Waylan Limberg2011-06-291-1/+44
| | | | Thanks to skurfer for report and inital patch.
* Added our own xhtml searializer. We no longer use a xml searializer to ↵Waylan Limberg2011-06-161-6/+6
| | | | output xhtml. This fixes #9 among other bugs. The test suite even had bad tests that should have been failing. They also have been corrected.
* Moved test dir back out of markdown lib. We don't need to install the tests ↵Waylan Limberg2010-02-121-0/+119
in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.