aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* 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-171-0/+3
* 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-031-2/+0
* Markdown.convertFile now actually works with stdin and stdout. Previously onl...Waylan Limberg2011-08-031-3/+6
* 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-271-1/+1
* 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
* Cleaned up markdown namespace. This may be a backward incompatible change for...Waylan Limberg2011-06-201-5/+2
* Added our own xhtml searializer. We no longer use a xml searializer to output...Waylan Limberg2011-06-161-5/+5
* Made lazy ordered lists a settable option. The previous behavior (on) is the ...Waylan Limberg2011-04-291-10/+3
* 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-181-2/+1
* sane logging. remove sys.exit() calls (libraries should never ever call sys.e...Craig de Stigter2011-04-181-23/+19
* Added `return self` to instance methods without return values to facilitate c...David Chambers2010-12-051-0/+9
* Wrapper functions now accept any arguments also accepted by the class, rather...Waylan Limberg2010-08-291-12/+4
* Fixed Ticket 71. Wrapper functions no longer do there own thing with extensio...Waylan Limberg2010-08-291-4/+45
* Missed changing version_info earlier.Waylan Limberg2010-07-141-1/+1
* Made some changes to setup.py. Markdown version is now set to 2.1.0.Dev as i...Waylan Limberg2010-07-141-2/+2
* Cleaned up the comments in markdown/__init__.py after the refactor.Waylan Limberg2010-07-071-33/+14
* A better implementation of globals as attributes on the Markdown class. This ...Waylan Limberg2010-07-071-36/+37
* Factored out the building of the various processors and patterns into utility...Waylan Limberg2010-07-071-102/+16
* Moved a bunch of global variables to the instance of the Markdown class.Waylan Limberg2010-07-061-10/+25
* Moved base Extension class and extension loaders to markdown/extensions/__ini...Waylan Limberg2010-07-061-100/+1
* Moved HtmlStash and base Prosessor classes to the new util module.Waylan Limberg2010-07-061-1/+1
* Clean up previous commit a little. renamed misc_logging to md_logging and fi...Waylan Limberg2010-07-061-9/+11
* Rename misc.py to util.py at the request of upstreamToshio Kuratomi2010-07-051-12/+12
* Establish backwards compatibilityToshio Kuratomi2010-07-051-0/+6
* Break cyclic import of markdown. This allows people to embed markdownToshio Kuratomi2010-07-051-118/+23
* Refactored codehilite and fenced code, so now fenced code will also be highli...Lucas van Dijk2010-01-251-13/+14
* The commandline script now accepts input from stdin. By extension markdownFro...Waylan Limberg2009-10-211-3/+6
* Fixed a silly bug in setup.py. Importing version from the lib requires that a...2.0.3Waylan Limberg2009-10-071-2/+2
* Upped version to 2.0.2-Final and added release notes.Waylan Limberg2009-07-311-2/+2
* Fixed Ticket 42. We really should abandon the 'message' function altogeather,...Waylan Limberg2009-08-261-7/+10
* Fixed Ticket 43. Apparenlty ElementTree does not recognize 'utf8' as an alias...Waylan Limberg2009-08-231-1/+1
* Fixed Ticket 34. stripToLevelTags now accounts for an empty document being re...Waylan Limberg2009-06-051-3/+11
* Upped version to 2.0.1-Final and added release notes.2.0.1Waylan Limberg2009-05-191-2/+2
* Updated docs for recent command line script changes.Waylan Limberg2009-05-061-2/+2
* Fixed commandline issues and upped version to 2.0.1-beta. Renamed markdown.py...Waylan Limberg2009-05-051-2/+2
* Upped version to 2.0 and a few edits to release notes.2.0-FinalWaylan Limberg2009-03-301-2/+2
* Fixed a bug where Markdown choked on input of only whitespace. Added some tests.Waylan Limberg2009-03-211-1/+1
* Set version to 2.0-rc2.Waylan Limberg2009-03-191-2/+2
* Output formats are now listed in a Dict mapped to their respective serializer...Waylan Limberg2009-03-161-6/+13
* Slight change to convertFromFile - better checking of type of output (filenam...Waylan Limberg2009-03-121-1/+1
* Added table elements to block elements so tables get prettified and updated t...Waylan Limberg2009-03-111-1/+2
* Upped version to 2.0-rc12.0-rc1Waylan Limberg2009-03-081-2/+2
* Fixed error handling to work when the logger is not being used.Waylan Limberg2009-01-281-23/+43