aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* Fix #4. Links in headers no longer munge up table of contents in TOC extension.Waylan Limberg2011-05-041-3/+10
* Fixed typo in previous commit. Extension.getConfigs is a method, not a property.Waylan Limberg2011-05-041-1/+1
* Extension.getConfigs returns a dict and is used by the extensions that use co...Waylan Limberg2011-05-046-32/+26
* Minor improvement to Extension settings API. Extension.getConfig now accepts ...Waylan Limberg2011-04-071-3/+7
* Factored out the importing of pygments in CodeHilite Extension so it doesn;t ...Waylan Limberg2011-04-071-27/+24
* Cleaned up CodeHilite extension. When pygments is not available provide simpl...Waylan Limberg2011-04-071-25/+12
* Made lazy ordered lists a settable option. The previous behavior (on) is the ...Waylan Limberg2011-04-293-12/+9
* 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
* | Correctly specify minimum version of cElementTree. Fixes #5.Waylan Limberg2011-04-281-2/+2
* | Corrected behavior of headerid extension to match default behavior when "Weve...Waylan Limberg2011-04-281-1/+4
* | Restored custom error message on UnicodeDecodeError. Otherwise we will be get...Waylan Limberg2011-04-281-2/+6
* | fix import loop when importing loggerCraig de Stigter2011-04-183-4/+7
* | sane logging. remove sys.exit() calls (libraries should never ever call sys.e...Craig de Stigter2011-04-187-81/+30
|/
* Added an alternative meta list syntax.David Chambers2011-02-171-1/+5
* Made the HeaderId extension's word separator configurable to allow, forDavid Chambers2011-01-221-2/+3
* Updated regular expression to accept periods in heading ids.David Chambers2011-01-091-1/+1
* Merge branch 'master' of https://github.com/davidchambers/Python-Markdown int...Waylan Limberg2010-12-121-0/+9
|\
| * Added `return self` to instance methods without return values to facilitate c...David Chambers2010-12-051-0/+9
* | Fixed a few inline issues found from running the currenlty skipped tests from...Waylan Limberg2010-11-041-7/+9
|/
* Fixed Ticket 74. AtomicStrings should now be ackowledged (and preserved) in a...Waylan Limberg2010-11-041-1/+6
* Cleaned up whitespace and linewrap issues in treeprocessorspy and fixed a few...Waylan Limberg2010-11-011-15/+17
* Fixed previous two commits. cElementTree cannot use ElementTree nodes in the ...Waylan Limberg2010-10-313-7/+7
* Improved previous commit. isBlockLevel is now more foolproof and will no long...Waylan Limberg2010-10-291-1/+5
* Fixed Ticket 80. Added support for ElementTree Comments to be included by thi...Waylan Limberg2010-10-292-6/+12
* Added short reference links. No more hanging empty brackets on reference link...Waylan Limberg2010-10-111-12/+15
* Fixed Ticket 79. Linebreaks in reference link identifiers are now ignored. Th...Waylan Limberg2010-10-111-0/+5
* Merge branch 'master' of git@gitorious.org:python-markdown/mainlineWaylan Limberg2010-09-203-68/+68
|\
| * Wrapper functions now accept any arguments also accepted by the class, rather...Waylan Limberg2010-08-291-12/+4
| * Fixed Ticket 71. Wrapper functions no longer do there own thing with extensio...Waylan Limberg2010-08-292-55/+45
| * Refactored fix- created method from local function for search. Fixes ticket 62.Gerry LaMontagne2010-08-311-20/+20
| * Further improvements to closing tag search in HtmlBlockProcessorsGerry LaMontagne2010-08-301-7/+11
| * Replaced block.rfind in _get_right_tag with custom search function.Gerry LaMontagne2010-08-291-1/+15
* | Fixed Ticket 78. Wikilinks now support unicode characters.Waylan Limberg2010-09-201-1/+1
* | Added the re.UNICODE flag to inlinepatterns. Now all inlinepattern regex will...Waylan Limberg2010-09-201-1/+2
|/
* Fixed Ticket 70 and added a test. Footnote references whithout a corespondin...Waylan Limberg2010-08-251-7/+10
* Fixed problem hidden by Ticket 68. Defining a footnote placeholder in a markd...Waylan Limberg2010-08-021-8/+7
* Fix Ticket 68. Remove an old line of code from the footnote extension that s...Waylan Limberg2010-08-021-1/+0
* Added logging imports to markdown.extensions which were missed in recent reor...Waylan Limberg2010-07-221-0/+2
* Fixed Ticket 65. Lines with only a lessthan sign (<) no longer crash the raw...Waylan Limberg2010-07-141-2/+2
* Missed changing version_info earlier.Waylan Limberg2010-07-141-1/+1
* Made some changes to setup.py. Markdown version is now set to 2.1.0.Dev as i...Waylan Limberg2010-07-141-2/+2
* Fixed Ticket 66. We have dropped official support for Python 3.0 and now only...Waylan Limberg2010-07-141-4/+7
* Cleaned up the comments in markdown/__init__.py after the refactor.Waylan Limberg2010-07-071-33/+14
* Fixed tab_length on codehilite extension to match new implementation of defau...Waylan Limberg2010-07-071-11/+5
* A better implementation of globals as attributes on the Markdown class. This ...Waylan Limberg2010-07-076-52/+53
* Factored out the building of the various processors and patterns into utility...Waylan Limberg2010-07-076-103/+90
* Moved a bunch of global variables to the instance of the Markdown class.Waylan Limberg2010-07-067-40/+48