index
:
markdown/.git
master
A Python implementation of John Gruber’s Markdown with Extension support.
Filipp Lepalaan
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
markdown.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed imports so logging works in commandline script.
Waylan Limberg
2008-12-07
1
-3
/
+5
*
Refactoring test and getting logging to work properly when etree fails to load.
Yuri Takhteyev
2008-12-07
1
-0
/
+5
*
Fixed BlockParser to parse code blocks nested in list items and added a test....
Waylan Limberg
2008-11-18
1
-0
/
+0
*
More refactoring.
Yuri Takhteyev
2008-11-18
1
-0
/
+29
*
Attempting a refactoring, breaking markdown into multiple files.
Yuri Takhteyev
2008-11-17
1
-2249
/
+2
*
Fixed a bug in loadextension where a nonexistant extention would crash rather...
Waylan Limberg
2008-11-13
1
-11
/
+8
*
Fixed BlockquoteProcessor to acknowledge blocks in which the blockquote start...
Waylan Limberg
2008-11-13
1
-5
/
+12
*
Replaced all uses of 4 spaces with TAB_LENGTH in BlockParser.
Waylan Limberg
2008-11-13
1
-8
/
+8
*
Made significant improvments to comments and docstrings in BlockParser. Also ...
Waylan Limberg
2008-11-13
1
-29
/
+186
*
Fixed whitespace only line clearing and updated another test to match pl and ...
Waylan Limberg
2008-11-13
1
-1
/
+1
*
Fixed core parser to differentiate between indented secondary lines of a list...
Waylan Limberg
2008-11-13
1
-2
/
+3
*
Refactored core parser state to work with nested states.
Waylan Limberg
2008-11-13
1
-9
/
+23
*
Fixed a streange anomily in whitespace a start of p and li tags. Mostly odd t...
Waylan Limberg
2008-11-13
1
-2
/
+2
*
Fixed funky-list (a ul with child ol items is still an ul and visa-versa). We...
Waylan Limberg
2008-11-13
1
-3
/
+4
*
Fixed various issues with the core parser - mostly whitespace related and upd...
Waylan Limberg
2008-11-13
1
-31
/
+81
*
Replaced old core parser with new BlockParser and copied old core into exten...
Waylan Limberg
2008-11-13
1
-401
/
+240
*
Fixed InlineProcessor to use the inlinePatterns on the Markdown instance dire...
Waylan Limberg
2008-11-05
1
-6
/
+4
*
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. All...
Waylan Limberg
2008-10-28
1
-168
/
+188
*
Combined the TextPreprocessors and Preprocessors into Preprocessors. Updated ...
Waylan Limberg
2008-10-20
1
-34
/
+7
*
Cleaned up some commented code from previous commit and added Jack Miller to ...
Waylan Limberg
2008-10-19
1
-15
/
+0
*
Made InlineProcessor a TreeProcessor. Now an extension can manipulate the tre...
Waylan Limberg
2008-10-19
1
-285
/
+281
*
Changed Postprocessors to Treeprocessors and TextPostProcessors to Postproces...
Waylan Limberg
2008-10-19
1
-27
/
+28
*
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
*
Made private methods actually private (to keep us honest) and removed
Yuri Takhteyev
2008-10-12
1
-453
/
+427
*
Refactored markdown tree traversing logic into a separate class
Yuri Takhteyev
2008-10-12
1
-202
/
+189
*
More cleanup. Refactored all the core parsing logic into a separate
Yuri Takhteyev
2008-10-12
1
-598
/
+620
*
More cleanup.
Yuri Takhteyev
2008-10-07
1
-68
/
+34
*
All sorts of cleanup.
Yuri Takhteyev
2008-10-07
1
-396
/
+291
*
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
*
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 - and...
Waylan Limberg
2008-09-03
1
-17
/
+15
*
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 w...
Artem Yunusov
2008-08-24
1
-10
/
+11
*
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
*
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 no...
Waylan Limberg
2008-08-22
1
-2
/
+3
*
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 c...
Artem Yunusov
2008-08-23
1
-19
/
+7
*
|
Fixed Ticket 13. Raw block-level html are no longer being inserted into <p> t...
Waylan Limberg
2008-08-22
1
-1
/
+1
|
/
*
As Markdown.__init__ no longer accepts a 'source' keyword, we no longer need ...
Waylan Limberg
2008-08-22
1
-5
/
+2
[next]