aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* Fixed #68. Blank line is not required after html comments.Waylan Limberg2012-01-151-14/+10
* Fixed #57. Multiline HTML Blocks no longer require a blank line after them.Waylan Limberg2012-01-151-1/+8
* Fixed #70. Empty anglebrackets '<>' are now properly recognized as raw html.Waylan Limberg2012-01-151-1/+1
* Fixed #61. stdin and stdout should work better in python 3.Waylan Limberg2012-01-152-16/+26
* Fixed #69. url_sanitize no longer crashes on unparsable urls.Waylan Limberg2012-01-151-9/+18
* Fixed #60. When we updated codehilite, we forgot to update fenced_codee to wo...Waylan Limberg2012-01-151-5/+5
* Fixed issue #66. Silly error. Not sure why the shebang lines were capitalized...Waylan Limberg2012-01-152-2/+2
* fixed an error in the BACKLINK_TEXT option in the footnotes extension.tim2012-01-151-2/+2
* New footnotes configuration option: BACKLINK_TEXT (second try).tim2012-01-151-2/+8
* attempt at a fix for issue w/ MD links inside of html tagish stuff with safe ...Mike Dirolf2012-01-121-2/+5
* appropriately move the tests to the fenced code documentation in the extensio...Daniel Gottlieb2011-12-271-1/+11
* Allow tildes or backticks in the fenced_code extension to support the syntax ...Daniel Gottlieb2011-12-271-1/+3
* Version 2.1.0-Final2.1.0.finalWaylan Limberg2011-11-241-2/+2
* 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