diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-03-13 10:46:50 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-03-13 10:46:50 -0400 |
commit | 92aa955c6ae145b47cf06172ef26defd20e8e2e0 (patch) | |
tree | e4268d238cc7c37a95097b1c0a92737a4709e540 /docs/release-2.3.txt | |
parent | 4c6cb86d8e3ebe4e2693d6357d5467da924bb5f6 (diff) | |
download | markdown-92aa955c6ae145b47cf06172ef26defd20e8e2e0.tar.gz markdown-92aa955c6ae145b47cf06172ef26defd20e8e2e0.tar.bz2 markdown-92aa955c6ae145b47cf06172ef26defd20e8e2e0.zip |
Removed the html_tidy extension. See 2.3 release notes for explaination.
Diffstat (limited to 'docs/release-2.3.txt')
-rw-r--r-- | docs/release-2.3.txt | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/release-2.3.txt b/docs/release-2.3.txt index 146ab53..574bdf6 100644 --- a/docs/release-2.3.txt +++ b/docs/release-2.3.txt @@ -8,9 +8,9 @@ Python-Markdown 2.3 Release Notes ================================= We are pleased to release Python-Markdown 2.3 which adds one new extension, -removes an old extension, and now runs on both Python 2 and Python 3 -without running the 2to3 conversion tool. See the list of changes below for -details. +removes a few old (obsolete) extensions, and now runs on both Python 2 and +Python 3 without running the 2to3 conversion tool. See the list of changes +below for details. Python-Markdown supports Python versions 2.6, 2.7, 3.1, 3.2, and 3.3. @@ -51,6 +51,18 @@ and will likely be removed in a future version of Python-Markdown. If you would like to continue using the extension (not recomended), it is archived on [Github](https://gist.github.com/waylan/4773365). +* The "HTML Tidy" Extension has been removed and no longer ships with Python-Markdown. +If you would like to continue using the extension (not recomended), it is +archived on [Github](https://gist.github.com/waylan/5152650). Note that the +underlying library, uTidylib, is not Python 3 compatable. Instead, it is +recommended that the newer [PyTidyLib] (version 0.2.2+ for Python 3 +compatability - install from github not PyPI) be used. As the API for that +library is rather simple, it is recommended that the output of Markdown be +wrapped in a call to PyTidyLib rather than using an extension (for example: +`tidylib.tidy_fragment(markdown.markdown(source), options={...})`). + +[PyTidyLib]: http://countergram.com/open-source/pytidylib + What's New in Python-Markdown 2.3 --------------------------------- |