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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Added support for python's '-m' command line option. Do 'python -m markdown [...
Waylan Limberg
2011-08-03
4
-28
/
+49
*
Cleaned up commandline script. Everything is in module now.
Waylan Limberg
2011-08-03
2
-10
/
+2
*
Markdown.convertFile now actually works with stdin and stdout. Previously onl...
Waylan Limberg
2011-08-03
2
-5
/
+9
*
rename command 'fab do_release' -> 'fad deploy_release'
Waylan Limberg
2011-08-03
1
-1
/
+1
*
Updated fabfile to automate deploying a release. Includes building a release ...
Waylan Limberg
2011-08-03
1
-2
/
+81
*
Added doctests to fabfile and edited them to pass in all supported versions o...
Waylan Limberg
2011-08-02
8
-58
/
+67
*
Edited release notes. Made a few minor corrections and added a note regarding...
Waylan Limberg
2011-07-28
1
-7
/
+15
*
TestCase.assert_ and TestCase.failUnless are depreciated in Python 3 in favor...
Waylan Limberg
2011-07-28
1
-3
/
+3
*
Fix a minor Python 3 incompatability in the headerid extension's slugify func...
Waylan Limberg
2011-07-28
1
-1
/
+1
*
Skip the UnidoceDecodeError API test in Python 3.x as all input should be uni...
Waylan Limberg
2011-07-28
1
-2
/
+3
*
Python 3.2 made some changes to the configparser which broke the testing fram...
Waylan Limberg
2011-07-28
2
-5
/
+5
*
Fixed a Python 2.4 incompatability in last commit. 'encode' only accepted pos...
Waylan Limberg
2011-07-28
2
-2
/
+2
*
All internal encoding of output now uses the 'xmlcharrefreplace' error handle...
Waylan Limberg
2011-07-28
3
-6
/
+13
*
All API tests now utilize our own searializers.
Waylan Limberg
2011-07-27
1
-3
/
+5
*
Stripped out encoding/decoding in the searializers.
Waylan Limberg
2011-07-27
2
-48
/
+38
*
Fix syntax error in doctests which tripped up the 2to3 tool.
Waylan Limberg
2011-07-24
1
-6
/
+6
*
Added fabfile as a script to automate various common mainentance tasks. Curre...
Waylan Limberg
2011-07-24
1
-0
/
+68
*
Fixed a few minor Python2.4 incompatabilities. Runs in 2.4-2.7 cleanly.
Waylan Limberg
2011-07-22
2
-2
/
+8
*
Fixed the bug exposed in 8761cd1780a7cec60123. We no longer should get empty ...
Waylan Limberg
2011-07-21
1
-2
/
+3
*
Fixed #31. Headers in tight lists now get inline patterns run on their tails....
Waylan Limberg
2011-07-21
3
-5
/
+16
*
Updated toc extension's anchorlink option to work properly with recent refactor.
Waylan Limberg
2011-07-14
1
-2
/
+6
*
Refactored the toc extension. Fixes #33: The [TOC] marker is now ignored in c...
Waylan Limberg
2011-07-14
1
-28
/
+17
*
Fixed #34. Better support for unicode text with the html_tidy extension. Forc...
Waylan Limberg
2011-07-14
1
-2
/
+5
*
Updated release notes for recent changes to headerid extension.
Waylan Limberg
2011-06-30
1
-0
/
+6
*
Refactored HeaderId extension to no longer include defining ids. It only auto...
Waylan Limberg
2011-06-30
4
-126
/
+126
*
Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. T...
Waylan Limberg
2011-06-29
3
-7
/
+69
*
Fixed #28. Inline raw html is now enclosed in p tags. This used to work. Some...
Waylan Limberg
2011-06-28
4
-3
/
+16
*
Merge pull request #27 from teepark/stdin-encoding
Waylan Limberg
2011-06-27
1
-1
/
+1
|
\
|
*
also respect encoding when reading from a user-provided file
Travis Parker
2011-06-25
1
-1
/
+1
|
/
*
Added first draft of 2.1.0-Alpha release notes.
Waylan Limberg
2011-06-23
1
-0
/
+97
*
Added html5 and xhtml5 output formats. These are just aliases to html4 and xh...
Waylan Limberg
2011-06-23
2
-2
/
+8
*
Added test for escaping chars in link urls. Closes #14 which was fixed in pre...
Waylan Limberg
2011-06-23
2
-0
/
+10
*
Cleaned up backward compatability of old positional arguments. Some people ma...
Waylan Limberg
2011-06-23
2
-20
/
+53
*
Added nl2br extension. Closes #13. Thanks to Brian Neal for writing the code ...
Waylan Limberg
2011-06-21
3
-17
/
+56
*
Fixed a few failing API tests. ElementTree is only available from markdown.ut...
Waylan Limberg
2011-06-21
1
-5
/
+5
*
Cleaned up markdown namespace. This may be a backward incompatible change for...
Waylan Limberg
2011-06-20
1
-5
/
+2
*
Made the searializer wrapping code a little more dry and more clearly defined...
Waylan Limberg
2011-06-20
1
-20
/
+10
*
Updated searializers to handle boolean attributes. html gets the value only a...
Waylan Limberg
2011-06-20
1
-2
/
+5
*
Merge branch 'master' of https://github.com/waylan/Python-Markdown
Waylan Limberg
2011-06-20
3
-4
/
+24
|
\
|
*
Minor Doc update. Fixed a typo in previous commit.
Waylan Limberg
2011-06-20
1
-1
/
+1
|
*
Merge pull request #25 from skurfer/noGuessing
Waylan Limberg
2011-06-19
3
-4
/
+24
|
|
\
|
|
*
allow language guessing to be disabled by passing a setting to CodeHilite - c...
Rob McBroom
2011-06-19
3
-4
/
+24
|
|
/
*
/
Added docs and tests to attr_list ext. Closes #7.
Waylan Limberg
2011-06-20
4
-0
/
+129
|
/
*
Added attribute list extension inspired by Maruku's attribute list feature. S...
Waylan Limberg
2011-06-17
1
-0
/
+122
*
Added our own xhtml searializer. We no longer use a xml searializer to output...
Waylan Limberg
2011-06-16
6
-37
/
+52
*
Fixed #22. Horizontal rules now work in a few more crazy edge cases. Who actu...
Waylan Limberg
2011-06-16
1
-1
/
+1
*
Fixed #23. Turns out markdown.pl only allows up to one space between brackets...
Waylan Limberg
2011-06-16
1
-2
/
+2
*
Merge branch 'master' of https://github.com/waylan/Python-Markdown
Waylan Limberg
2011-06-15
1
-2
/
+2
|
\
|
*
A few minor tweaks to the smart_strong extension. Thanks to David Chambers fo...
Waylan Limberg
2011-06-13
1
-2
/
+2
*
|
Fixed #21. A header and paragraph not seperated by a blank line inside a list...
Waylan Limberg
2011-06-15
3
-4
/
+61
|
/
[prev]
[next]