aboutsummaryrefslogtreecommitdiffstats
path: root/test-markdown.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed Ticket 43. Apparenlty ElementTree does not recognize 'utf8' as an ↵Waylan Limberg2009-08-231-4/+4
| | | | alias of 'utf-8' and outputs invalid xml. We never noticed as stripTopLevelTags removes the offending fragment. However, there are legitimate uses for turning off stripTopLevelTags. Therefore, from now on we will be using 'utf-8' internally. Thanks to Mark Eichin for the report.
* Added optional HTML 4 output. Available formats currently include XHTML 1 ↵Eric Abrahamsen2009-01-281-3/+4
| | | | | | | | and HTML 4. Thanks to Eric Abrahamsen for doing the legwork and providing an initial working patch. And thanks to Fredrik Lundh for allowing us to include his html4 serializer from the ElementTree 1.3 preview.
* Check for dependencies for the CodeHilite extension before running it's ↵Waylan Limberg2008-12-081-2/+9
| | | | tests - avoiding known failures. Perhaps this should be a builtin feature of the tester, but this hack will do for now.
* Refactoring test and getting logging to work properly when etree fails to load.Yuri Takhteyev2008-12-071-161/+112
|
* Different way of importing htmlentitydefs for python 3.0 and disabling diff ↵Yuri Takhteyev2008-12-041-2/+4
| | | | | | output in test-markdown.py for the same.
* Updated definition list extension to work with new block parser.Waylan Limberg2008-11-221-1/+1
|
* disable def_list tests until fixed.Waylan Limberg2008-11-131-1/+1
|
* Added Abbreviation Extension. Tests includedWaylan Limberg2008-11-051-0/+1
|
* Added Definition List extension. This is a first draft. A few more advanced ↵Waylan Limberg2008-11-041-0/+1
| | | | features in PHP's implementation don't work yet. Most notably a blank line between a term and its first definition will break things. See the included test for what works.
* Updated and activated footnotes extension tests for refactor in previous commit.Waylan Limberg2008-10-291-1/+1
|
* More cleanup. Not sure why some executables didn't have shebang lines. They ↵Waylan Limberg2008-10-291-0/+2
| | | | do now.
* Cleaning house. Actually have all executables be executable and stop Vim's ↵Waylan Limberg2008-10-281-0/+0
| | | | .swp files from showing up in git status.
* Completing the test case for the toc extension.Yuri Takhteyev2008-10-181-0/+1
|
* Removed old 'wikilink' extension.Waylan Limberg2008-09-201-1/+1
|
* Fixed memory measure for MacOS.Artem Yunusov2008-08-241-2/+5
|
* Added final results to test script.Artem Yunusov2008-08-241-1/+11
|
* We should be running all the available extension tests. Enabled now - except ↵Waylan Limberg2008-08-221-1/+2
| | | | for footnotes as the random links to the footnotes are never the same so it will never pass.
* Added reset methods for InlineStash and HtmlStash. Some cleanups and ↵Artem Yunusov2008-08-041-1/+1
| | | | comments modifications.
* Bugfix for inline patterns. Tables extension ported to ElementTree.Artem Yunusov2008-08-041-4/+4
|
* Merge git://gitorious.org/python-markdown/mainlineArtem Yunusov2008-08-021-1/+2
|\ | | | | | | | | | | | | Conflicts: markdown.py mdx_rss.py
| * Adding extensions tests.Yuri Takhteyev2008-07-291-1/+2
| |
* | ElementTree support added.Artem Yunusov2008-07-061-1/+1
| |
* | Code blocks escaping bug fixed. Some test suite modifications.Artem Yunusov2008-07-031-1/+1
| |
* | Test suite cleanup. README for markdown2 tests. Separation in two ↵Artem2008-06-261-4/+4
| | | | | | | | stages(markdown to tree, applying inline patterns).
* | first commitArtem2008-06-241-2/+5
|/
* create the test output directory if it doesn't already exist.Jeff Balogh2008-05-301-0/+3
| | | | codecs.open was failing without it.
* Whoops. "ht" -> "hd".Yuri Takhteyev2008-05-301-1/+1
|
* Making difflib.HtmlDiff optional for compatibility with python 2.3.Yuri Takhteyev2008-05-301-7/+11
|
* Added safe_mode to testing framework and soem tests.Waylan Limberg2008-03-191-4/+4
|
* fixed testing framework to actually use the extensions passed in and a few ↵Waylan Limberg2008-03-031-3/+4
| | | | other minor cleanup things.
* Allow repeated calls to md.convert to pass in an empty string. Also fixed ↵Waylan Limberg2007-11-031-2/+2
| | | | testing framework to allow tests for this and added tests. Fixes [1825231]
* Added a test scriptYuri Takhteyev2007-03-251-0/+355