summaryrefslogtreecommitdiff
path: root/markdown/blockprocessors.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typos and remove trailing spacesKian-Meng Ang2022-04-101-1/+1
* [style]: fix various typos in docstrings and commentsFlorian Best2022-03-181-1/+1
* Disallow square brackets in reference link ids.Waylan Limberg2022-01-101-1/+1
* Fix cubic ReDoS in fenced code and referencesB. Caller2021-05-071-1/+1
* Ensure admonition content is detabbed properlyIsaac Muse2021-02-051-3/+5
* Avoid catastrophic backtracking in `hr` regexWaylan Limberg2020-10-241-5/+4
* Refactor HTML Parser (#803)Waylan Limberg2020-09-221-0/+30
* Fix HR which follows strong em.Waylan Limberg2020-07-011-1/+1
* Limit depth of blockquotes using Python's recursion limit. (#991)Waylan Limberg2020-06-291-1/+1
* Simplify xml.etree.ElementTree loading (#902)Dmitry Shachnev2020-02-031-14/+15
* Drop support for Python 2.7 (#865)Hugo van Kemenade2019-10-241-14/+10
* Allow hashes to be escaped in headers (#763)Isaac Muse2018-12-221-1/+1
* Remove lazy_ol keyword. Use sane_lists extension instead.Waylan Limberg2018-07-311-1/+3
* Fix double escaping of amp in attributes (#670)Isaac Muse2018-07-291-2/+2
* Consistent copyright headers.Waylan Limberg2018-07-271-0/+20
* All Markdown instances are now 'md'. (#691)Waylan Limberg2018-07-271-4/+4
* Replace homegrown OrderedDict with purpose-built Registry. (#688)Waylan Limberg2018-07-271-10/+10
* Fix typo.Amal Murali2018-05-071-1/+1
* Correct spelling mistakes.Edward Betts2018-01-131-1/+1
* fix DeprecationWarning: invalid escape sequenced9pouces2017-07-251-1/+1
* Fix hr recursion issue (#535)Isaac Muse2017-01-231-2/+3
* Updated BlockProcessor to new-style class. Changed subclasses to use super().Kar Epker2015-06-011-4/+4
* Changed formatting of regex strings. Fixed flake8 issues.Kar Epker2015-06-011-13/+6
* Changed line continuations to satisfy pylint.Kar Epker2015-06-011-10/+13
* Fixed parser ignoring value of tab_length.Kar Epker2015-06-011-7/+20
* No binary operators at begining of line.Waylan Limberg2015-02-181-4/+4
* Use newer ElementTree API to avoid future breakage.Waylan Limberg2015-01-311-1/+1
* Flake8 cleanup (mostly whitespace).Waylan Limberg2014-11-201-60/+65
* Mark a few more lines with 'no cover' - missed them the first time through. T...Waylan Limberg2014-07-111-1/+1
* Marked a bunch of lines as 'no cover'. Coverage at 91%Waylan Limberg2014-07-111-2/+2
* Address various depreciated APIs in PythonWaylan Limberg2014-01-081-5/+5
* Use lead blockprocessor comment as docstringAdam Dinwoodie2013-03-181-10/+12
* Future imports go after the docstringsAdam Dinwoodie2013-03-181-1/+1
* Now using universal code for Python 2 & 3.Waylan Limberg2013-02-271-16/+16
* Preserve all blank lines in code blocks.Waylan Limberg2013-02-141-13/+13
* Cleaned up fixes for #183Waylan Limberg2013-02-081-1/+1
* Preserve empty lines in code blocksWaylan Limberg2013-02-061-6/+7
* Fix all pyflakes unused-import/unused-variable warningsDmitry Shachnev2012-11-091-1/+1
* Provide more control to list processors subclasses.Waylan Limberg2012-01-241-1/+3
* Fixed #47. Improved HRProccessor.\n\nPython's re module does not support atom...Waylan Limberg2011-11-171-18/+19
* Fixed #22. Horizontal rules now work in a few more crazy edge cases. Who actu...Waylan Limberg2011-06-161-1/+1
* Fixed #21. A header and paragraph not seperated by a blank line inside a list...Waylan Limberg2011-06-151-4/+27
* Fixed #15. Setext Headers now work with any number of - or = characters.Waylan Limberg2011-06-011-1/+1
* Made lazy ordered lists a settable option. The previous behavior (on) is the ...Waylan Limberg2011-04-291-1/+1
* Merge commit 'refs/merge-requests/13' of git://gitorious.org/python-markdown/...Waylan Limberg2011-04-281-1/+16
|\
| * fixed startindex reset in multiple ulRohan Jain2011-04-051-6/+4
| * add new list item commentRohan Jain2011-04-031-0/+1
| * custom index support for ol tagRohan Jain2011-04-031-1/+17
* | fix import loop when importing loggerCraig de Stigter2011-04-181-1/+3
* | sane logging. remove sys.exit() calls (libraries should never ever call sys.e...Craig de Stigter2011-04-181-3/+2
|/