aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Skipped 3 failing pl tests with some weird edge cases. A significant rewrite ...Waylan Limberg2011-10-061-0/+12
* Fixed #44. The TOC extension will now except True/False in addition to 1/0 fr...Waylan Limberg2011-10-061-1/+1
* Do'h! Fixed a silly typo.Waylan Limberg2011-10-051-1/+1
* Fixed a few typos in the using_as_module docs.Waylan Limberg2011-10-051-12/+16
* Fixed one more [[wikilink]] missed in previous commit.Waylan Limberg2011-10-051-1/+1
* Fixed a few errors in the 2.1.0-alpha release notes and updated links to not ...Waylan Limberg2011-10-051-13/+15
* Made a few minor edits to command line docs.Waylan Limberg2011-10-051-4/+4
* Updated docs to no longer use the [[wikilink]] style links from the old wiki....Waylan Limberg2011-09-226-38/+37
* Updated Extra Extension docs to relect recent changes in the extension.Waylan Limberg2011-09-221-9/+7
* Run a few more pl tests. Some of them are failing but should be easily fixable.Waylan Limberg2011-08-272-0/+12
* Added greater-than as an escaped character. Apparently markdown.pl escapes it...Waylan Limberg2011-08-273-1/+4
* Added support to build_docs command to copy non markdown files unmodified.Waylan Limberg2011-08-233-6/+10
* Update build_docs script for the *.txt -> *.md change in docs.Waylan Limberg2011-08-232-10/+76
* Renamed *.txt -> *.md in docs.Waylan Limberg2011-08-2331-39/+1
* Fixed #39. Refactored escaping so that it only escapes a predifined set of ch...Waylan Limberg2011-08-175-8/+29
* Fixed the fabfile geterate_test(s) commands so they actually import the testi...Waylan Limberg2011-08-171-2/+6
* The build_docs command now uses extra and toc extensions and a template on th...Waylan Limberg2011-08-042-31/+34
* TOC extension now attaches toc to Markdown instance (Markdown.toc), but only ...Waylan Limberg2011-08-041-0/+11
* Added some fadfile commands to (re)generate tests when they are added or upda...Waylan Limberg2011-08-042-5/+54
* Set version to '2.1.0.alpha'.2.1.0.alphaWaylan Limberg2011-08-032-3/+3
* Added 'fab clean' command.Waylan Limberg2011-08-031-0/+4
* Updated release notes to include a note about support for python's `-m` option.Waylan Limberg2011-08-031-0/+6
* Added support for python's '-m' command line option. Do 'python -m markdown [...Waylan Limberg2011-08-034-28/+49
* Cleaned up commandline script. Everything is in module now.Waylan Limberg2011-08-032-10/+2
* Markdown.convertFile now actually works with stdin and stdout. Previously onl...Waylan Limberg2011-08-032-5/+9
* rename command 'fab do_release' -> 'fad deploy_release'Waylan Limberg2011-08-031-1/+1
* Updated fabfile to automate deploying a release. Includes building a release ...Waylan Limberg2011-08-031-2/+81
* Added doctests to fabfile and edited them to pass in all supported versions o...Waylan Limberg2011-08-028-58/+67
* Edited release notes. Made a few minor corrections and added a note regarding...Waylan Limberg2011-07-281-7/+15
* TestCase.assert_ and TestCase.failUnless are depreciated in Python 3 in favor...Waylan Limberg2011-07-281-3/+3
* Fix a minor Python 3 incompatability in the headerid extension's slugify func...Waylan Limberg2011-07-281-1/+1
* Skip the UnidoceDecodeError API test in Python 3.x as all input should be uni...Waylan Limberg2011-07-281-2/+3
* Python 3.2 made some changes to the configparser which broke the testing fram...Waylan Limberg2011-07-282-5/+5
* Fixed a Python 2.4 incompatability in last commit. 'encode' only accepted pos...Waylan Limberg2011-07-282-2/+2
* All internal encoding of output now uses the 'xmlcharrefreplace' error handle...Waylan Limberg2011-07-283-6/+13
* All API tests now utilize our own searializers.Waylan Limberg2011-07-271-3/+5
* 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
* Added fabfile as a script to automate various common mainentance tasks. Curre...Waylan Limberg2011-07-241-0/+68
* 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-213-5/+16
* 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
* Updated release notes for recent changes to headerid extension.Waylan Limberg2011-06-301-0/+6
* Refactored HeaderId extension to no longer include defining ids. It only auto...Waylan Limberg2011-06-304-126/+126
* Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. T...Waylan Limberg2011-06-293-7/+69
* Fixed #28. Inline raw html is now enclosed in p tags. This used to work. Some...Waylan Limberg2011-06-284-3/+16
* Merge pull request #27 from teepark/stdin-encodingWaylan Limberg2011-06-271-1/+1
|\