diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-08 10:54:40 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-08 10:54:40 -0500 |
commit | 41cc055580d63ffb7eb2bbb6c88e121727d91d06 (patch) | |
tree | aa70239496cfd7320e465f3588f6f4aac02413a5 /docs | |
parent | 28deb9b08f1cdc688a9463f569f6f23305890816 (diff) | |
download | markdown-41cc055580d63ffb7eb2bbb6c88e121727d91d06.tar.gz markdown-41cc055580d63ffb7eb2bbb6c88e121727d91d06.tar.bz2 markdown-41cc055580d63ffb7eb2bbb6c88e121727d91d06.zip |
Footnote ids contain dashes when outputing HTML5.
Previously they contained colons - and they still do for HTML4 and XHTML.
Fixes #180.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-2.3.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/release-2.3.txt b/docs/release-2.3.txt index 3255f74..9c53d12 100644 --- a/docs/release-2.3.txt +++ b/docs/release-2.3.txt @@ -23,6 +23,12 @@ 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 --------------------------------- |