Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes #64. Added sane_list extension. | Waylan Limberg | 2012-01-24 | 3 | -0/+40 |
| | | | | | | | | | | This is an extension which alters the behavior of lists to be less surprising. If turned out to be rather simple to code. I'm surprised no one had written it yet. I should note that this extension does not generate separate lists if different unordered list markers are used (`*` verses `-` verses `+`) The way the parser works that would be a little more tricky. | ||||
* | Removed Codehilite from tests. | Waylan Limberg | 2012-01-20 | 2 | -32/+32 |
| | | | | | | Codehilite generates differant output with differant versiosn of pygments. We support those various versions of pygments but can't unsure that the same version is always available on every platform tests are run on. | ||||
* | Support github-flavored markdown by making the '.' optional before language ↵ | Mike Dirolf | 2012-01-17 | 3 | -0/+69 |
| | | | | type. | ||||
* | Fenced code blocks need to end with a fence on its own line. | Mike Dirolf | 2012-01-17 | 3 | -0/+69 |
| | |||||
* | also undo changes to the test.cfg | Daniel Gottlieb | 2011-12-27 | 1 | -4/+0 |
| | |||||
* | appropriately move the tests to the fenced code documentation in the ↵ | Daniel Gottlieb | 2011-12-27 | 2 | -150/+0 |
| | | | | extension source | ||||
* | Allow tildes or backticks in the fenced_code extension to support the syntax ↵ | Daniel Gottlieb | 2011-12-27 | 3 | -1/+155 |
| | | | | used by github | ||||
* | Some more tests for issue #51. An upate to Marcin Kasperski's tests (which I ↵ | Waylan Limberg | 2011-11-17 | 3 | -2402/+1212 |
| | | | | previously merged). Thanks Marcin. Also added a test for not-indented secondary lines of a first paragraph in a footnote definition. | ||||
* | Merge git://github.com/Mekk/Python-Markdown into mekk | Waylan Limberg | 2011-11-17 | 2 | -0/+10796 |
|\ | |||||
| * | Example test for #51 (crash on docs with +1000 footnotes) | Marcin Kasperski | 2011-11-10 | 2 | -0/+10796 |
| | | |||||
* | | Fixed #51. Removed recussion from footnote preproccessor. Also refactors the ↵ | Waylan Limberg | 2011-11-18 | 3 | -14/+7 |
|/ | | | | code to provide a few other minor improvements s that output more closely matches php's output. Thus the changes in the tests. | ||||
* | Fixed #30. Tables now allow three spaces of indent like PHP Markdown Extra. ↵ | Waylan Limberg | 2011-06-29 | 2 | -1/+62 |
| | | | | Thanks to skurfer for report and inital patch. | ||||
* | Added docs and tests to attr_list ext. Closes #7. | Waylan Limberg | 2011-06-20 | 3 | -0/+55 |
| | |||||
* | Added our own xhtml searializer. We no longer use a xml searializer to ↵ | Waylan Limberg | 2011-06-16 | 1 | -6/+6 |
| | | | | output xhtml. This fixes #9 among other bugs. The test suite even had bad tests that should have been failing. They also have been corrected. | ||||
* | Skipping codehilite test as differant versions of pygments give slightly ↵ | Waylan Limberg | 2010-11-04 | 1 | -0/+2 |
| | | | | differant output and I'm tired of seeing the test fail when there is no real problem. | ||||
* | Fixed Ticket 70 and added a test. Footnote references whithout a ↵ | Waylan Limberg | 2010-08-25 | 2 | -0/+3 |
| | | | | coresponding definition no longer raise an error. They now pass through as plain text - which is the same behavior as PHP Markdown Extra. Thanks for the report Benjamin Bach. | ||||
* | Fixed problem hidden by Ticket 68. Defining a footnote placeholder in a ↵ | Waylan Limberg | 2010-08-02 | 2 | -0/+15 |
| | | | | markdown document results in the placeholder actually being replaced. Also added a test for this. Note that if the placeholder paragraph has other text, that text is lost. Not sure if this is a bug or bad markdown syntax. | ||||
* | Fixed Ticket 60. The dd in definition lists can now not be indented on ↵ | Waylan Limberg | 2010-03-24 | 2 | -0/+12 |
| | | | | secondary lines. | ||||
* | Changed the default style used by pygments in the codehilite extension. ↵ | Waylan Limberg | 2010-03-25 | 1 | -2/+2 |
| | | | | This was a recently added feature, but older versions of pygments don't know what the 'tango' style is, so we now use pygemnts 'default' by default. Not sure why the 'tango' style was used here in the first place. I'm guess it was the preferance of whoever contributed the patch. | ||||
* | Updated codehilite test to match new pygments output (they added an extra ↵ | Waylan Limberg | 2010-02-13 | 1 | -2/+2 |
| | | | | div around line numbers). | ||||
* | Moved test dir back out of markdown lib. We don't need to install the tests ↵ | Waylan Limberg | 2010-02-12 | 30 | -0/+3694 |
in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc. |