aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
Commit message (Expand)AuthorAgeFilesLines
* 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
* Added our own xhtml searializer. We no longer use a xml searializer to output...Waylan Limberg2011-06-162-21/+36
* Fixed #22. Horizontal rules now work in a few more crazy edge cases. Who actu...Waylan Limberg2011-06-161-1/+1
* Fixed #23. Turns out markdown.pl only allows up to one space between brackets...Waylan Limberg2011-06-161-2/+2
* Merge branch 'master' of https://github.com/waylan/Python-MarkdownWaylan Limberg2011-06-151-2/+2
|\
| * A few minor tweaks to the smart_strong extension. Thanks to David Chambers fo...Waylan Limberg2011-06-131-2/+2
* | Fixed #21. A header and paragraph not seperated by a blank line inside a list...Waylan Limberg2011-06-151-4/+27
|/
* Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we no...Waylan Limberg2011-06-072-1/+47
* Fixed #19. Improved Start Emphasis regex.Waylan Limberg2011-06-071-1/+1
* Added "." to the characters that may be included in implicit heading ids.David Chambers2011-06-051-1/+1
* Minor adjustment to previous commit. Reference links don't need unescaped as ...Waylan Limberg2011-06-021-4/+4
* Partial fix of issue #14. hrefs (and titles) are now unescaped, but it uppear...Waylan Limberg2011-06-023-12/+25
* Fixed #15. Setext Headers now work with any number of - or = characters.Waylan Limberg2011-06-011-1/+1
* Added new HTML5 block elements to known block level elementsHorst Gutmann2011-05-221-1/+3
* Fix #4. Links in headers no longer munge up table of contents in TOC extension.Waylan Limberg2011-05-041-3/+10
* Fixed typo in previous commit. Extension.getConfigs is a method, not a property.Waylan Limberg2011-05-041-1/+1
* Extension.getConfigs returns a dict and is used by the extensions that use co...Waylan Limberg2011-05-046-32/+26
* Minor improvement to Extension settings API. Extension.getConfig now accepts ...Waylan Limberg2011-04-071-3/+7
* Factored out the importing of pygments in CodeHilite Extension so it doesn;t ...Waylan Limberg2011-04-071-27/+24
* Cleaned up CodeHilite extension. When pygments is not available provide simpl...Waylan Limberg2011-04-071-25/+12
* Made lazy ordered lists a settable option. The previous behavior (on) is the ...Waylan Limberg2011-04-293-12/+9
* Merge commit 'refs/merge-requests/13' of git://gitorious.org/python-markdown/...Waylan Limberg2011-04-281-1/+16
|\
| * fixed startindex reset in multiple ulRohan Jain2011-04-051-6/+4
| * add new list item commentRohan Jain2011-04-031-0/+1
| * custom index support for ol tagRohan Jain2011-04-031-1/+17
* | Correctly specify minimum version of cElementTree. Fixes #5.Waylan Limberg2011-04-281-2/+2
* | Corrected behavior of headerid extension to match default behavior when "Weve...Waylan Limberg2011-04-281-1/+4
* | 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-183-4/+7
* | sane logging. remove sys.exit() calls (libraries should never ever call sys.e...Craig de Stigter2011-04-187-81/+30
|/
* Added an alternative meta list syntax.David Chambers2011-02-171-1/+5
* Made the HeaderId extension's word separator configurable to allow, forDavid Chambers2011-01-221-2/+3
* Updated regular expression to accept periods in heading ids.David Chambers2011-01-091-1/+1
* Merge branch 'master' of https://github.com/davidchambers/Python-Markdown int...Waylan Limberg2010-12-121-0/+9
|\
| * Added `return self` to instance methods without return values to facilitate c...David Chambers2010-12-051-0/+9
* | Fixed a few inline issues found from running the currenlty skipped tests from...Waylan Limberg2010-11-041-7/+9
|/
* Fixed Ticket 74. AtomicStrings should now be ackowledged (and preserved) in a...Waylan Limberg2010-11-041-1/+6
* Cleaned up whitespace and linewrap issues in treeprocessorspy and fixed a few...Waylan Limberg2010-11-011-15/+17
* Fixed previous two commits. cElementTree cannot use ElementTree nodes in the ...Waylan Limberg2010-10-313-7/+7
* Improved previous commit. isBlockLevel is now more foolproof and will no long...Waylan Limberg2010-10-291-1/+5