aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/test.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Fixed handling of table cell splitMustafa Haddara2015-10-241-1/+1
|
* Preserve order of nested headers in TOCWaylan Limberg2014-12-301-0/+4
| | | | | | | | | Fixes #380. The TOC replacement is now seperate from building the TOC, which allows us to iter through the doc in order rather than with the non-order-preserving interparent pethod. This is almost a complete refactor of the run method. Also cleaned up the config stuff. Thanks to @colewerner for the report and test case.
* All extension tests now use python dot notation.Waylan Limberg2014-08-291-20/+20
| | | | | | | | | | All named extensions now use python dot notation in the tests - including all builtin extensions (eg: 'extra' => 'markdown.extensions.extra'). This is in anticipation of #336. Note there are a few tests (in the error tests) that will still need updating, but not till we make the change as they will test for the new error message.
* Refactored test framework to use YAML config files rather than INI. Fixes #333.Waylan Limberg2014-08-201-30/+56
|
* smarty: add support for angled quotesDmitry Shachnev2014-06-191-1/+1
| | | | See <http://en.wikipedia.org/wiki/Guillemet>.
* Add smarty to extensions for attr_list testDmitry Shachnev2014-05-061-1/+1
| | | | To make it easier to notice (and fix) the failure.
* Add tests for the previous two commitsDmitry Shachnev2013-09-251-2/+2
|
* Add smarty extension, based on SmartyPants libraryDmitry Shachnev2013-07-261-0/+3
|
* Added support for attr_lists on definition list terms.Waylan Limberg2013-07-191-1/+1
| | | | | | | | Like headers (h1-6) dt's can only be on one line, so we need to use the header regex on dt's. This was implemented after considering a recent [discussion](http://six.pairlist.net/pipermail/markdown-discuss/2013-July/002859.html) on the markdown mailing list. Prior to that discussion, I never considered that it was impossable to set block level attrs on dt's. Now it is.
* adding test for out of order headlinesbenjaoming2013-02-181-0/+3
|
* Merge branch 'master' into admonitionTiago Serafim2013-02-091-0/+3
|\ | | | | | | | | | | Conflicts: docs/extensions/index.txt tests/extensions/test.cfg
| * nl2br and attr_list compatability.Waylan Limberg2013-02-061-0/+3
| | | | | | | | | | | | Fixes #177. When using both extensions, breaks (`<br>`) must have a linebreak (`\n`) after them before attr_list is run. This patch reorders the treeprocessors so that happens ('attr_list' runs after 'prettify' not before). Also had to alter headerid extension so it runs after 'prettify' or it would run before 'attr_list' if loaded before 'attr_list' by user.
* | Initial version with insufficient tests and no docs.Tiago Serafim2012-09-021-0/+3
|/
* Fixes #64. Added sane_list extension.Waylan Limberg2012-01-241-0/+3
| | | | | | | | | | 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 Limberg2012-01-201-1/+1
| | | | | | 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 Dirolf2012-01-171-0/+3
| | | | type.
* Fenced code blocks need to end with a fence on its own line.Mike Dirolf2012-01-171-0/+3
|
* also undo changes to the test.cfgDaniel Gottlieb2011-12-271-4/+0
|
* Allow tildes or backticks in the fenced_code extension to support the syntax ↵Daniel Gottlieb2011-12-271-1/+5
| | | | used by github
* Added docs and tests to attr_list ext. Closes #7.Waylan Limberg2011-06-201-0/+3
|
* Skipping codehilite test as differant versions of pygments give slightly ↵Waylan Limberg2010-11-041-0/+2
| | | | differant output and I'm tired of seeing the test fail when there is no real problem.
* Moved test dir back out of markdown lib. We don't need to install the tests ↵Waylan Limberg2010-02-121-0/+17
in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.