aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/blockprocessors.py
Commit message (Expand)AuthorAgeFilesLines
* 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
|/
* A better implementation of globals as attributes on the Markdown class. This ...Waylan Limberg2010-07-071-11/+11
* Factored out the building of the various processors and patterns into utility...Waylan Limberg2010-07-071-0/+18
* Moved a bunch of global variables to the instance of the Markdown class.Waylan Limberg2010-07-061-11/+15
* Clean up previous commit a little. renamed misc_logging to md_logging and fi...Waylan Limberg2010-07-061-1/+2
* Rename misc.py to util.py at the request of upstreamToshio Kuratomi2010-07-051-27/+27
* Break cyclic import of markdown. This allows people to embed markdownToshio Kuratomi2010-07-051-29/+29
* Fix for undefined variables that need to be importedToshio Kuratomi2010-07-051-0/+1
* Blockquoted text in the first item of a list is now placed in child p tag of theGerry LaMontagne2010-03-231-25/+3
* Fixed ticket 58. The first item of a looselist gets placed in p tags whenGerry LaMontagne2010-03-221-3/+35
* Fixed Ticket 57. Lists where the first line of an item is a nested item, now ...Waylan Limberg2010-03-191-2/+17
* Fixed Ticket 53. Nested lists no longer isorder items in certain edge cases. ...Waylan Limberg2010-03-151-1/+5
* Fixed ticket 35. Lists now work when padded with five or more spaces after as...Waylan Limberg2009-06-171-4/+4