Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed a streange anomily in whitespace a start of p and li tags. Mostly odd ↵ | Waylan Limberg | 2008-11-13 | 1 | -2/+2 |
| | | | | tests corrected. | ||||
* | Fixed funky-list (a ul with child ol items is still an ul and visa-versa). ↵ | Waylan Limberg | 2008-11-13 | 1 | -3/+4 |
| | | | | Weird, but it matchs pl and php implementations. | ||||
* | Fixed various issues with the core parser - mostly whitespace related and ↵ | Waylan Limberg | 2008-11-13 | 1 | -31/+81 |
| | | | | updated a few tests that weren't quite right - that is they now better match pl or php implementations. | ||||
* | Replaced old core parser with new BlockParser and copied old core into ↵ | Waylan Limberg | 2008-11-13 | 1 | -401/+240 |
| | | | | extension. | ||||
* | Fixed InlineProcessor to use the inlinePatterns on the Markdown instance ↵ | Waylan Limberg | 2008-11-05 | 1 | -6/+4 |
| | | | | directly rather than a copied list of values set at init. | ||||
* | Added definition list items (dt & dd) to html block elements. | Waylan Limberg | 2008-11-04 | 1 | -1/+1 |
| | |||||
* | Replaced Treap with OrderedDict. Updated regression_tests and extensions. ↵ | Waylan Limberg | 2008-10-28 | 1 | -168/+188 |
| | | | | All tests pass. Still needs documentation. | ||||
* | Combined the TextPreprocessors and Preprocessors into Preprocessors. Updated ↵ | Waylan Limberg | 2008-10-20 | 1 | -34/+7 |
| | | | | extensions and docs as well. | ||||
* | Cleaned up some commented code from previous commit and added Jack Miller to ↵ | Waylan Limberg | 2008-10-19 | 1 | -15/+0 |
| | | | | docs/AUTHORS for his toc extension. | ||||
* | Made InlineProcessor a TreeProcessor. Now an extension can manipulate the ↵ | Waylan Limberg | 2008-10-19 | 1 | -285/+281 |
| | | | | tree either before or after InlinePatterns are run. Updated docs as well. This change should not affect existing extensions. | ||||
* | Changed Postprocessors to Treeprocessors and TextPostProcessors to ↵ | Waylan Limberg | 2008-10-19 | 1 | -27/+28 |
| | | | | Postprocessors. These names more acturately depict what things do. Also updated the extensions and docs to match. | ||||
* | Made third argument of Treap.add function optional. | Artem Yunusov | 2008-10-16 | 1 | -46/+30 |
| | |||||
* | Fixed the url sanitation after recent refactor. All tests pass now. | Waylan Limberg | 2008-10-13 | 1 | -5/+6 |
| | |||||
* | Fixing the footnotes extension and corresponding fixes to markdown.py. | Yuri Takhteyev | 2008-10-13 | 1 | -7/+7 |
| | |||||
* | Fixed command-line handling. | Yuri Takhteyev | 2008-10-13 | 1 | -8/+5 |
| | |||||
* | Incorporated Ben Wilson's Treap implementation. | Yuri Takhteyev | 2008-10-12 | 1 | -123/+253 |
| | | | | | | | Pre-processors, post-processors, patterns, etc. are now all stored in Treaps. We can then insert items between them with code like this: markdown.inlinePatterns.add("foo", FooPattern(), "<strong") | ||||
* | Made private methods actually private (to keep us honest) and removed | Yuri Takhteyev | 2008-10-12 | 1 | -453/+427 |
| | | | | unnecessary whitespace. | ||||
* | Refactored markdown tree traversing logic into a separate class | Yuri Takhteyev | 2008-10-12 | 1 | -202/+189 |
| | | | | (InlineProcessor). | ||||
* | More cleanup. Refactored all the core parsing logic into a separate | Yuri Takhteyev | 2008-10-12 | 1 | -598/+620 |
| | | | | class: MarkdownParser. | ||||
* | More cleanup. | Yuri Takhteyev | 2008-10-07 | 1 | -68/+34 |
| | |||||
* | All sorts of cleanup. | Yuri Takhteyev | 2008-10-07 | 1 | -396/+291 |
| | | | | | | The bigger changes include getting rid of old BOM-removal logic and getting rid of BlockGuru. Most of the changes are just re-ordering of functions, removal of whitespace, adding comments, etc. | ||||
* | Changing logging per Michael Bayer's suggestion. | Yuri Takhteyev | 2008-10-06 | 1 | -55/+58 |
| | |||||
* | Checking if logger level is set before changing it. | Yuri Takhteyev | 2008-10-06 | 1 | -2/+3 |
| | |||||
* | Fixed stupid mistake in previous commit. | Waylan Limberg | 2008-09-04 | 1 | -1/+1 |
| | |||||
* | Moved prettifyETree into a Postprocessor and added code to append all '<br ↵ | Waylan Limberg | 2008-09-04 | 1 | -25/+40 |
| | | | | />' tags with a linebreak. Also fixed a minor bug were the '<br />' tags contained 2 spaces instead of one before the slash (i.e. '<br />'). Note that by moving to a Postprocessor, anyone can override with their own code which does what they want (i.e. add indentation) with the extension api. | ||||
* | Refactor inline placeholders and use strings of random chars for placeholders. | Waylan Limberg | 2008-09-03 | 1 | -19/+12 |
| | |||||
* | Replaced indentation with linebreaks only. At least its more consistant - ↵ | Waylan Limberg | 2008-09-03 | 1 | -17/+15 |
| | | | | and it better matches other markdown implementations. Also updated tests. | ||||
* | Comments updates. | splyer | 2008-08-24 | 1 | -28/+7 |
| | |||||
* | more_comments test works fine now. | Artem Yunusov | 2008-08-24 | 1 | -1/+2 |
| | |||||
* | isBlockLevel function and HtmlBlockPreprocessor changed. more_comments test ↵ | Artem Yunusov | 2008-08-24 | 1 | -10/+11 |
| | | | | works fine now. | ||||
* | Fixed some bugs concerning HTML, test extended and works. | Artem Yunusov | 2008-08-24 | 1 | -5/+23 |
| | |||||
* | Fixed Ticket 11. Disabled ``indenteTree`` for `pre` and `code` tags. Now | Waylan Limberg | 2008-08-22 | 1 | -1/+1 |
| | | | | | | | | | whitespace is preserved in codeblocks. As a side-benefit, this also solved the issue with the safe-mode tests failing. All tests incorectly altered at ElementTree conversion have been corrected for this bug. Any remaining tests that fail are unrelated to this. | ||||
* | Improved past commit - treated safe raw html properly. | Waylan Limberg | 2008-08-22 | 1 | -2/+1 |
| | |||||
* | Added special case for raw html in safe-mode. The escaped/replaced html is ↵ | Waylan Limberg | 2008-08-22 | 1 | -2/+3 |
| | | | | now wrapped in <p> tags so we have valid html. | ||||
* | Merge branch 'master' of git@gitorious.org:python-markdown/mainline | Waylan Limberg | 2008-08-22 | 1 | -19/+7 |
|\ | |||||
| * | Added check for AtomicStrinc instead of ['code', 'pre'] check, deleted some ↵ | Artem Yunusov | 2008-08-23 | 1 | -19/+7 |
| | | | | | | | | commented code lines. | ||||
* | | Fixed Ticket 13. Raw block-level html are no longer being inserted into <p> ↵ | Waylan Limberg | 2008-08-22 | 1 | -1/+1 |
|/ | | | | | | | | | | | | | tags. Also edited numerious tests that were expecting wrong output - they now expect correct output. Note that a few **still fail** because the output before moving to ELementTree wasn't correct either. So I set the expected output to what I think it should be so we don't forget about it later. I should also note that the 'safe-mode' tests are failing. However, I believe the current expected output is correct as it is valid html. Interestingly, these tests passed prior to this fix. We'll need to special case safe-mode here. | ||||
* | As Markdown.__init__ no longer accepts a 'source' keyword, we no longer need ↵ | Waylan Limberg | 2008-08-22 | 1 | -5/+2 |
| | | | | to ensure that the 'source' kerword of Markdown.convert does not override it when set to 'None'. Now that Markdown.convert is the only place 'source' should be set, we can assume we always use it. And while we're at it, we might as well make 'source' a required argument. | ||||
* | Empty line bug. | Artem Yunusov | 2008-08-22 | 1 | -5/+7 |
| | |||||
* | Merge git@gitorious.org:python-markdown/mainline | Artem Yunusov | 2008-08-21 | 1 | -10/+16 |
|\ | | | | | | | | | | | Conflicts: markdown.py | ||||
| * | "sanatize_url" -> "sanitize_url" | Yuri Takhteyev | 2008-08-21 | 1 | -5/+5 |
| | | |||||
| * | Changing string to unicode in Neale's fix. Adding test cases. | Yuri Takhteyev | 2008-08-20 | 1 | -1/+1 |
| | | |||||
| * | Pattern.compiled_re | Neale Pickett | 2008-08-20 | 1 | -4/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > I suppose one thing to do would be to somehow "annotate" nodes to > specify that they should not have their children processed. Artem, > what would you suggest? Then, <a> nodes created with [...]() would > get their children processed, but those created with autolinks (<...>) > will be marked as done. Okay, I promise to get on the mail list, but this was such an obvious and elegant solution that I couldn't wait for the subscription to finish. Any objections to me starting a branch and pushing this to your gitorious project? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||
* | | Got rid of inline sections. | Artem Yunusov | 2008-08-21 | 1 | -24/+51 |
|/ | |||||
* | 2.0-beta tag.2.0-beta | Artem Yunusov | 2008-08-18 | 1 | -1/+1 |
| | |||||
* | Removed depreciated 'source' keyword argument from Markdown.__init__() in ↵ | Waylan Limberg | 2008-08-12 | 1 | -5/+2 |
| | | | | preparation for 2.0. This should be the last of any depreciated features. | ||||
* | renamed extension module and set import to extension module first, then ↵ | Waylan Limberg | 2008-08-11 | 1 | -6/+8 |
| | | | | mdx_filename | ||||
* | reorganized the extensions into a seperate dir. Much cleaner looking file ↵ | Waylan Limberg | 2008-08-09 | 1 | -3/+6 |
| | | | | system IMO. | ||||
* | AND_SUBSTITUTE -> AMP_SUBSTITUTE | Artem Yunusov | 2008-08-09 | 1 | -12/+18 |
| | |||||
* | Comments cleanup, deleted Markdown._processTree function. | Artem Yunusov | 2008-08-09 | 1 | -48/+60 |
| |