aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* Fixed #51. Removed recussion from footnote preproccessor. Also refactors the ...Waylan Limberg2011-11-181-47/+31
* Fixed #47. Improved HRProccessor.\n\nPython's re module does not support atom...Waylan Limberg2011-11-171-18/+19
* Fixed #49. Don't crash on poorly/randomly ordered header levels. Maybe someda...Waylan Limberg2011-10-301-42/+46
* Release 2.1.0-Beta2.1.0.betaWaylan Limberg2011-10-101-2/+2
* Allow UPPERCASE urls in auto links.Waylan Limberg2011-10-061-1/+1
* Fixed #44. The TOC extension will now except True/False in addition to 1/0 fr...Waylan Limberg2011-10-061-1/+1
* Added greater-than as an escaped character. Apparently markdown.pl escapes it...Waylan Limberg2011-08-271-1/+1
* Fixed #39. Refactored escaping so that it only escapes a predifined set of ch...Waylan Limberg2011-08-173-5/+29
* TOC extension now attaches toc to Markdown instance (Markdown.toc), but only ...Waylan Limberg2011-08-041-0/+11
* Set version to '2.1.0.alpha'.2.1.0.alphaWaylan Limberg2011-08-031-2/+2
* Added support for python's '-m' command line option. Do 'python -m markdown [...Waylan Limberg2011-08-032-9/+13
* Cleaned up commandline script. Everything is in module now.Waylan Limberg2011-08-031-4/+2
* Markdown.convertFile now actually works with stdin and stdout. Previously onl...Waylan Limberg2011-08-031-3/+6
* 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
* 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