aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* Fixed a Python 2.4 incompatability in last commit. 'encode' only accepted pos...Waylan Limberg2011-07-281-1/+1
* All internal encoding of output now uses the 'xmlcharrefreplace' error handle...Waylan Limberg2011-07-281-3/+6
* Stripped out encoding/decoding in the searializers.Waylan Limberg2011-07-272-48/+38
* 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-222-2/+8
* Fixed the bug exposed in 8761cd1780a7cec60123. We no longer should get empty ...Waylan Limberg2011-07-211-2/+3
* Fixed #31. Headers in tight lists now get inline patterns run on their tails....Waylan Limberg2011-07-211-1/+12
* 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
* Fixed #28. Inline raw html is now enclosed in p tags. This used to work. Some...Waylan Limberg2011-06-281-1/+12
* also respect encoding when reading from a user-provided fileTravis Parker2011-06-251-1/+1
* Added html5 and xhtml5 output formats. These are just aliases to html4 and xh...Waylan Limberg2011-06-231-0/+4
* Cleaned up backward compatability of old positional arguments. Some people ma...Waylan Limberg2011-06-231-12/+44
* Added nl2br extension. Closes #13. Thanks to Brian Neal for writing the code ...Waylan Limberg2011-06-211-0/+35
* Cleaned up markdown namespace. This may be a backward incompatible change for...Waylan Limberg2011-06-201-5/+2
* Made the searializer wrapping code a little more dry and more clearly defined...Waylan Limberg2011-06-201-20/+10
* Updated searializers to handle boolean attributes. html gets the value only a...Waylan Limberg2011-06-201-2/+5
* 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
* Added our own xhtml searializer. We no longer use a xml searializer to output...Waylan Limberg2011-06-162-21/+36
* Fixed #22. Horizontal rules now work in a few more crazy edge cases. Who actu...Waylan Limberg2011-06-161-1/+1
* Fixed #23. Turns out markdown.pl only allows up to one space between brackets...Waylan Limberg2011-06-161-2/+2
* Merge branch 'master' of https://github.com/waylan/Python-MarkdownWaylan Limberg2011-06-151-2/+2
|\
| * A few minor tweaks to the smart_strong extension. Thanks to David Chambers fo...Waylan Limberg2011-06-131-2/+2
* | Fixed #21. A header and paragraph not seperated by a blank line inside a list...Waylan Limberg2011-06-151-4/+27
|/
* Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we no...Waylan Limberg2011-06-072-1/+47
* Fixed #19. Improved Start Emphasis regex.Waylan Limberg2011-06-071-1/+1
* Added "." to the characters that may be included in implicit heading ids.David Chambers2011-06-051-1/+1
* Minor adjustment to previous commit. Reference links don't need unescaped as ...Waylan Limberg2011-06-021-4/+4
* Partial fix of issue #14. hrefs (and titles) are now unescaped, but it uppear...Waylan Limberg2011-06-023-12/+25
* Fixed #15. Setext Headers now work with any number of - or = characters.Waylan Limberg2011-06-011-1/+1
* Added new HTML5 block elements to known block level elementsHorst Gutmann2011-05-221-1/+3
* 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