summaryrefslogtreecommitdiff
path: root/tests/test_markdown_lexer.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year (fixes #1514.)Matthäus G. Chajdas2020-08-221-1/+1
|
* Improve Markdown lexer (#1495)Leistungsabfall2020-07-211-0/+525
| | | | | | | | | | | | | | | | | | | | | * Add support for Setext-style headings in Markdown * Improve inline code detection in Markdown * Add support for indented code blocks in Markdown * Improve italics & bold detection in Markdown * Simplify italics & bold regexes in Markdown * Add warning about possible unrecognized internal tags in Markdown * Improve striktethrough detection in Markdown * Small bugfix in Markdown * Small bugfix in Markdown * Small refactoring in Markdown
* Remove unittest classes from the test suite.Georg Brandl2019-11-101-16/+21
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Fix issue with markdown lexer code fencesFredrik Larsen2017-11-101-0/+31
Fixes the bug reported in #1389, where the markdown lexer will not issue a token for the closing code fence. Issue: #1389