aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__init__.py
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed encoding issues when writing to stdout.Waylan Limberg2012-08-231-2/+9
* Improved `Markdown.set_output_format()`Waylan Limberg2012-08-091-4/+10
* Fixed UnicodeEncodeError when output from markdown_py is piped into another p...Alexander Artemenko2012-07-261-1/+2
* Fixed #112 and cleaned up error reporting when loading extensions.Waylan Limberg2012-07-121-9/+13
* Upped version to 2.2.0-Final.2.2.0.finalWaylan Limberg2012-07-051-1/+1
* Fixed #105. Non-existant extensions fail with a warning only.Waylan Limberg2012-06-281-1/+1
* Updated version to 2.2.0.alpha.2.2.0.alphaWaylan Limberg2012-05-041-20/+20
* Fixed #82. 'enable_attributes' honors 'safe_mode'.Waylan Limberg2012-05-031-0/+4
* Typo fix in doc: s/extension-configs/extension_configs/Simon Sapin2012-03-191-1/+1
* Point to docs hosted with PyPI rather than Yuri's missing site.Waylan Limberg2012-03-071-1/+1
* Merge pull request #50 from nud/import-extensionsWaylan Limberg2012-01-241-6/+7
|\
| * Allow specifying the full module name for extensions.Steve Frécinaux2011-11-021-6/+7
* | Release 2.1.1. A bugfix release.2.1.1.finalWaylan Limberg2012-01-221-3/+3
* | It is spelled 'serializers' not 'searializers'.Waylan Limberg2012-01-201-1/+1
* | Fixed a few typos in the doc strings. Thanks to Ivan Konev for the patch.Waylan Limberg2012-01-181-5/+5
* | Fixed #61. stdin and stdout should work better in python 3.Waylan Limberg2011-12-281-15/+25
* | Version 2.1.0-Final2.1.0.finalWaylan Limberg2011-11-241-2/+2
|/
* Release 2.1.0-Beta2.1.0.betaWaylan Limberg2011-10-101-2/+2
* 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