aboutsummaryrefslogtreecommitdiffstats
path: root/markdown.py
Commit message (Expand)AuthorAgeFilesLines
* Allow markdown.py script to run on Windows - stop it from importing itself in...Waylan Limberg2009-03-161-0/+11
* Fixed imports so logging works in commandline script.Waylan Limberg2008-12-071-3/+5
* Refactoring test and getting logging to work properly when etree fails to load.Yuri Takhteyev2008-12-071-0/+5
* Fixed BlockParser to parse code blocks nested in list items and added a test....Waylan Limberg2008-11-181-0/+0
* More refactoring.Yuri Takhteyev2008-11-181-0/+29
* Attempting a refactoring, breaking markdown into multiple files.Yuri Takhteyev2008-11-171-2249/+2
* Fixed a bug in loadextension where a nonexistant extention would crash rather...Waylan Limberg2008-11-131-11/+8
* Fixed BlockquoteProcessor to acknowledge blocks in which the blockquote start...Waylan Limberg2008-11-131-5/+12
* Replaced all uses of 4 spaces with TAB_LENGTH in BlockParser.Waylan Limberg2008-11-131-8/+8
* Made significant improvments to comments and docstrings in BlockParser. Also ...Waylan Limberg2008-11-131-29/+186
* Fixed whitespace only line clearing and updated another test to match pl and ...Waylan Limberg2008-11-131-1/+1
* Fixed core parser to differentiate between indented secondary lines of a list...Waylan Limberg2008-11-131-2/+3
* Refactored core parser state to work with nested states.Waylan Limberg2008-11-131-9/+23
* Fixed a streange anomily in whitespace a start of p and li tags. Mostly odd t...Waylan Limberg2008-11-131-2/+2
* Fixed funky-list (a ul with child ol items is still an ul and visa-versa). We...Waylan Limberg2008-11-131-3/+4
* Fixed various issues with the core parser - mostly whitespace related and upd...Waylan Limberg2008-11-131-31/+81
* Replaced old core parser with new BlockParser and copied old core into exten...Waylan Limberg2008-11-131-401/+240
* Fixed InlineProcessor to use the inlinePatterns on the Markdown instance dire...Waylan Limberg2008-11-051-6/+4
* Added definition list items (dt & dd) to html block elements.Waylan Limberg2008-11-041-1/+1
* Replaced Treap with OrderedDict. Updated regression_tests and extensions. All...Waylan Limberg2008-10-281-168/+188
* Combined the TextPreprocessors and Preprocessors into Preprocessors. Updated ...Waylan Limberg2008-10-201-34/+7
* Cleaned up some commented code from previous commit and added Jack Miller to ...Waylan Limberg2008-10-191-15/+0
* Made InlineProcessor a TreeProcessor. Now an extension can manipulate the tre...Waylan Limberg2008-10-191-285/+281
* Changed Postprocessors to Treeprocessors and TextPostProcessors to Postproces...Waylan Limberg2008-10-191-27/+28
* Made third argument of Treap.add function optional.Artem Yunusov2008-10-161-46/+30
* Fixed the url sanitation after recent refactor. All tests pass now.Waylan Limberg2008-10-131-5/+6
* Fixing the footnotes extension and corresponding fixes to markdown.py.Yuri Takhteyev2008-10-131-7/+7
* Fixed command-line handling.Yuri Takhteyev2008-10-131-8/+5
* Incorporated Ben Wilson's Treap implementation.Yuri Takhteyev2008-10-121-123/+253
* Made private methods actually private (to keep us honest) and removedYuri Takhteyev2008-10-121-453/+427
* Refactored markdown tree traversing logic into a separate classYuri Takhteyev2008-10-121-202/+189
* More cleanup. Refactored all the core parsing logic into a separateYuri Takhteyev2008-10-121-598/+620
* More cleanup.Yuri Takhteyev2008-10-071-68/+34
* All sorts of cleanup.Yuri Takhteyev2008-10-071-396/+291
* Changing logging per Michael Bayer's suggestion.Yuri Takhteyev2008-10-061-55/+58
* Checking if logger level is set before changing it.Yuri Takhteyev2008-10-061-2/+3
* Fixed stupid mistake in previous commit.Waylan Limberg2008-09-041-1/+1
* Moved prettifyETree into a Postprocessor and added code to append all '<br />...Waylan Limberg2008-09-041-25/+40
* Refactor inline placeholders and use strings of random chars for placeholders.Waylan Limberg2008-09-031-19/+12
* Replaced indentation with linebreaks only. At least its more consistant - and...Waylan Limberg2008-09-031-17/+15
* Comments updates.splyer2008-08-241-28/+7
* more_comments test works fine now.Artem Yunusov2008-08-241-1/+2
* isBlockLevel function and HtmlBlockPreprocessor changed. more_comments test w...Artem Yunusov2008-08-241-10/+11
* Fixed some bugs concerning HTML, test extended and works.Artem Yunusov2008-08-241-5/+23
* Fixed Ticket 11. Disabled ``indenteTree`` for `pre` and `code` tags. NowWaylan Limberg2008-08-221-1/+1
* Improved past commit - treated safe raw html properly.Waylan Limberg2008-08-221-2/+1
* Added special case for raw html in safe-mode. The escaped/replaced html is no...Waylan Limberg2008-08-221-2/+3
* Merge branch 'master' of git@gitorious.org:python-markdown/mainlineWaylan Limberg2008-08-221-19/+7
|\
| * Added check for AtomicStrinc instead of ['code', 'pre'] check, deleted some c...Artem Yunusov2008-08-231-19/+7
* | Fixed Ticket 13. Raw block-level html are no longer being inserted into <p> t...Waylan Limberg2008-08-221-1/+1
|/