Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactored extension importing. | Waylan Limberg | 2014-08-27 | 1 | -1/+0 |
| | | | | | | | | | | | | | We now use importlib which means we no longer support Python 2.6. Also, this refactor properly imports third party extensions which reside at the root of PYTHONPATH. Previously, either `markdown.extensions.` or `mdx_` would be appended to any extension name that did not contain a dot, which required third party extensions to either be in submodules or use the old `mdx_` naming convention. This commit is also in preperation for #336. It will now be much easier to deprecate (and later remove) support for the old ways of handling extension names. | ||||
* | Merge branch 'master' of github.com:waylan/Python-Markdown | Waylan Limberg | 2014-07-10 | 1 | -0/+1 |
|\ | |||||
| * | Add 3.4 to list of Python versions to test with | Dmitry Shachnev | 2014-06-11 | 1 | -0/+1 |
| | | |||||
* | | Add Coverage (and Coveralls) support to tests. | Waylan Limberg | 2014-07-10 | 1 | -0/+3 |
|/ | | | | Looks like we need to write some more tests. Only 76% covered. | ||||
* | Update .travis.yml | Waylan Limberg | 2014-03-24 | 1 | -0/+3 |
| | | | Add install of libtidy dependancy. Forgot about that. | ||||
* | Add .travis.yml file | Waylan Limberg | 2014-03-24 | 1 | -0/+10 |
Just uses the existing tox config as described in <http://borntyping.com/posts/tox-and-travis-ci.html>. This fixes #299. I took this route rather than @mitya57's suggestion because we get better test coverage with tox's config (more dependencies are installed) and I can't see mirroring that here when we can just reuse it. |