aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* Release 2.1.1. A bugfix release.2.1.1.finalWaylan Limberg2012-01-221-3/+3
* Fixed #73. Codehilite now works in footnotes.Waylan Limberg2012-01-202-4/+4
* It is spelled 'serializers' not 'searializers'.Waylan Limberg2012-01-202-1/+1
* Always use Markdown's serializers.Waylan Limberg2012-01-201-1/+1
* Inline html is now escaped by the searializer.Waylan Limberg2012-01-191-1/+2
* Partial fix for issue introduced in fix for #59Waylan Limberg2012-01-191-2/+7
* Fixed #59. Raw HTML parsing is no longer slow.Waylan Limberg2012-01-182-14/+13
* Merge branch 'master' of git://github.com/fiesta/Python-Markdown into fiestaWaylan Limberg2012-01-184-5/+9
|\
| * Support github-flavored markdown by making the '.' optional before language t...Mike Dirolf2012-01-171-1/+1
| * Fenced code blocks need to end with a fence on its own line.Mike Dirolf2012-01-171-1/+1
| * When safe mode is 'escape', don't allow bad html to stop further processing.Mike Dirolf2012-01-141-1/+2
| * Fix logic bug introduced in 35930e0928e19...Mike Dirolf2012-01-141-1/+1
| * 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
* | Fixed a few typos in the doc strings. Thanks to Ivan Konev for the patch.Waylan Limberg2012-01-181-5/+5
* | Fixed #68. Blank line is not required after html comments.Waylan Limberg2011-12-291-14/+10
* | Fixed #57. Multiline HTML Blocks no longer require a blank line after them.Waylan Limberg2011-12-291-1/+8
* | Fixed #70. Empty anglebrackets '<>' are now properly recognized as raw html.Waylan Limberg2011-12-291-1/+1
* | Fixed #61. stdin and stdout should work better in python 3.Waylan Limberg2011-12-282-16/+26
* | Fixed #69. url_sanitize no longer crashes on unparsable urls.Waylan Limberg2011-12-281-9/+18
* | Fixed #60. When we updated codehilite, we forgot to update fenced_codee to wo...Waylan Limberg2011-12-281-5/+5
* | Fixed issue #66. Silly error. Not sure why the shebang lines were capitalized...Waylan Limberg2011-12-282-2/+2
* | Merge pull request #67 from fiesta/masterWaylan Limberg2011-12-281-1/+13
|\|
| * 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
* | fixed an error in the BACKLINK_TEXT option in the footnotes extension.tim2011-12-201-2/+2
* | New footnotes configuration option: BACKLINK_TEXT (second try).tim2011-12-201-2/+8
|/
* 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