diff options
author | Tiago Serafim <tserafim@gmail.com> | 2013-02-09 16:51:17 -0200 |
---|---|---|
committer | Tiago Serafim <tserafim@gmail.com> | 2013-02-09 17:39:12 -0200 |
commit | 14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1 (patch) | |
tree | edcb6d7462d31d66dcc792ed5e84373187b1de14 /docs/release-2.3.txt | |
parent | 6c15c64df40b9ded3f5dea2e694905222791c1b6 (diff) | |
parent | 41cc055580d63ffb7eb2bbb6c88e121727d91d06 (diff) | |
download | markdown-14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1.tar.gz markdown-14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1.tar.bz2 markdown-14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1.zip |
Merge branch 'master' into admonition
Conflicts:
docs/extensions/index.txt
tests/extensions/test.cfg
Diffstat (limited to 'docs/release-2.3.txt')
-rw-r--r-- | docs/release-2.3.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/release-2.3.txt b/docs/release-2.3.txt new file mode 100644 index 0000000..9c53d12 --- /dev/null +++ b/docs/release-2.3.txt @@ -0,0 +1,37 @@ +title: Release Notes for v2.3 +prev_title: Change Log +prev_url: change_log.html +next_title: Release Notes for v2.2.1 +next_url: release-2.2.1.html + +Python-Markdown 2.3 Release Notes +================================= + +We are pleased to release Python-Markdown 2.3 which ... + +Python-Markdown supports Python versions 2.6, 2.7, 3.1, 3.3, and 3.3. + +Backwards-incompatible Changes +------------------------------ + +* Support has been dropped for Python 2.5. No guarantees are made that the +library will work in any version of Python lower than 2.6. + +* "safe_mode" has been further restricted. Markdown formated links must be +of a known whitelisted scheme when in "safe_mode" or the url is discarded. +The whitelesited schemes are: 'http', 'https', 'ftp', 'ftps', 'mailto', +'news'. Schemeless urls are also permitted, but are checked in other ways - +as they have been for some time. + +* The ids assigned to footnotes now contain a dash (`-`) rather than a colon +(`:`) when `output_format` it set to "html5" or "xhtml5". If you are making +reference to those ids in your JavaScript or CSS and using the HTML5 output, +you will need to update your code accordingly. No changes are necessary if +you are outputing XHTML (the default) or HTML4. + +What's New in Python-Markdown 2.3 +--------------------------------- + +Various bug fixes have been made. See the +[commit log](https://github.com/waylan/Python-Markdown/commits/master) +for a complete history of the changes. |