aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_syntax/extensions
Commit message (Collapse)AuthorAgeFilesLines
* smart_emphasis keyword > legacy_em extension.Waylan Limberg2018-07-311-0/+40
| | | | | | | | | The smart_strong extension has been removed and its behavior is now the default (smart em and smart strong are the default). The legacy_em extension restores legacy behavior (no smart em or smart strong). This completes the removal of keywords. All parser behavior is now modified by extensions, not by keywords on the Markdown class.
* Consistent copyright headers.Waylan Limberg2018-07-273-0/+63
| | | | Fixes #435.
* Moved enable_attributes keyword to extension: legacy_attrs.Waylan Limberg2018-07-241-0/+48
| | | | | | | If you have existing documents that use the legacy attributes format, then you should enable the legacy_attrs extension for those documents. Everyone is encouraged to use the attr_list extension going forward. Closes #643. Work adapted from 0005d7a of the md3 branch.
* Only strip spaces in tables (#644)Isaac Muse2018-02-222-0/+43
Strip only the space character and not things like nbsp in tables. Fixes #635.