summaryrefslogtreecommitdiff
path: root/tests/test_syntax/extensions/test_tables.py
Commit message (Collapse)AuthorAgeFilesLines
* Update th/td to use style attributeGaige B Paulsen2022-05-051-0/+860
| | | | | | | | | | This allows better interoperation with CSS style sheets, as the align object on the TH is skipped if the css uses 'text-align: inherit' and the previous 'text-align' is used instead (or the default: left). Added an override to restore the original `align` behavior Moved existing tests to the new test infrastructure Added new tests to test the configuration parameter Updated documentation to document the configuration parameter.
* Drop support for Python 2.7 (#865)Hugo van Kemenade2019-10-241-2/+0
| | | | | | | * Python syntax upgraded using `pyupgrade --py3-plus` * Travis no longer uses `sudo`. See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration See #760 for Python Version Support Timeline and related dicussion.
* Consistent copyright headers.Waylan Limberg2018-07-271-0/+21
| | | | Fixes #435.
* Only strip spaces in tables (#644)Isaac Muse2018-02-221-0/+43
Strip only the space character and not things like nbsp in tables. Fixes #635.