aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions
Commit message (Expand)AuthorAgeFilesLines
* Added doctests to fabfile and edited them to pass in all supported versions o...Waylan Limberg2011-08-027-58/+66
* Fix a minor Python 3 incompatability in the headerid extension's slugify func...Waylan Limberg2011-07-281-1/+1
* Fix syntax error in doctests which tripped up the 2to3 tool.Waylan Limberg2011-07-241-6/+6
* Fixed a few minor Python2.4 incompatabilities. Runs in 2.4-2.7 cleanly.Waylan Limberg2011-07-221-1/+7
* Updated toc extension's anchorlink option to work properly with recent refactor.Waylan Limberg2011-07-141-2/+6
* Refactored the toc extension. Fixes #33: The [TOC] marker is now ignored in c...Waylan Limberg2011-07-141-28/+17
* Fixed #34. Better support for unicode text with the html_tidy extension. Forc...Waylan Limberg2011-07-141-2/+5
* Refactored HeaderId extension to no longer include defining ids. It only auto...Waylan Limberg2011-06-302-78/+76
* Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. T...Waylan Limberg2011-06-291-6/+7
* Added nl2br extension. Closes #13. Thanks to Brian Neal for writing the code ...Waylan Limberg2011-06-211-0/+35
* allow language guessing to be disabled by passing a setting to CodeHilite - c...Rob McBroom2011-06-192-4/+17
* Added attribute list extension inspired by Maruku's attribute list feature. S...Waylan Limberg2011-06-171-0/+122
* A few minor tweaks to the smart_strong extension. Thanks to David Chambers fo...Waylan Limberg2011-06-131-2/+2
* Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we no...Waylan Limberg2011-06-072-1/+47
* Added "." to the characters that may be included in implicit heading ids.David Chambers2011-06-051-1/+1
* 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
* Corrected behavior of headerid extension to match default behavior when "Weve...Waylan Limberg2011-04-281-1/+4
* sane logging. remove sys.exit() calls (libraries should never ever call sys.e...Craig de Stigter2011-04-182-6/+1
* 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 git@gitorious.org:python-markdown/mainlineWaylan Limberg2010-09-201-51/+0
|\
| * Fixed Ticket 71. Wrapper functions no longer do there own thing with extensio...Waylan Limberg2010-08-291-51/+0
* | Fixed Ticket 78. Wikilinks now support unicode characters.Waylan Limberg2010-09-201-1/+1
|/
* 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 tab_length on codehilite extension to match new implementation of defau...Waylan Limberg2010-07-071-11/+5
* Moved base Extension class and extension loaders to markdown/extensions/__ini...Waylan Limberg2010-07-061-0/+99
* 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-058-8/+8
* Break cyclic import of markdown. This allows people to embed markdownToshio Kuratomi2010-07-0510-14/+20
* Fix for undefined variables that need to be importedToshio Kuratomi2010-07-052-2/+2
* Fixed Ticket 60. The dd in definition lists can now not be indented on second...Waylan Limberg2010-03-241-2/+7
* The html-tidy extension now fails gracefully when tidy is not installed on th...Waylan Limberg2010-03-251-2/+6
* Changed the default style used by pygments in the codehilite extension. This...Waylan Limberg2010-03-251-1/+1
* Fixed some code that wasn't Python 2.4 compatible.Waylan Limberg2010-02-221-1/+1
* Removed imagelinks extension. It never worked without some third party code t...Waylan Limberg2010-02-131-119/+0
* Refactored codehilite and fenced code, so now fenced code will also be highli...Lucas van Dijk2010-01-252-81/+80
* Added pygments support to fenced_codeLucas van Dijk2010-01-241-13/+64
* Added processing of markdown text within raw html to the 'extra' extension. F...Waylan Limberg2010-01-031-0/+2
* Fix the TOC extension for TOCs starting at levels other than 1.Steve Losh2009-12-251-1/+4
* Fixed Ticket 37. When multiple markdown documents are displayed on one page andWaylan Limberg2009-07-211-5/+19
* Fixed TOC extension to properly nest multiple header levels in the table of c...Waylan Limberg2009-07-211-7/+3