Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release-2.5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Backwards-incompatible Changes
As the HTML would not be parsed with the above Extension, then the serializer will
escape the raw HTML, which is exactly what happens now when `safe_mode="escape"`.

[Bleach]: http://bleach.readthedocs.org/
[Bleach]: https://bleach.readthedocs.io/

* Positional arguments on the `markdown.Markdown()` are pending deprecation as are
all except the `text` argument on the `markdown.markdown()` wrapper function.
Expand Down
4 changes: 2 additions & 2 deletions docs/release-2.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ raw HTML, then that can be accomplished through an extension which removes HTML
As the HTML would not be parsed with the above Extension, then the serializer will
escape the raw HTML, which is exactly what happens now when `safe_mode="escape"`.

[Bleach]: http://bleach.readthedocs.org/
[Bleach]: https://bleach.readthedocs.io/

### Positional Arguments Deprecated

Expand Down Expand Up @@ -256,7 +256,7 @@ Test coverage has been improved including running [flake8]. While those changes
will not directly effect end users, the code is being better tested which will
benefit everyone.

[flake8]: http://flake8.readthedocs.org/en/latest/
[flake8]: https://flake8.readthedocs.io/en/latest/

Various bug fixes have been made. See the
[commit log](https://github.com/waylan/Python-Markdown/commits/master)
Expand Down
2 changes: 1 addition & 1 deletion markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __init__(self, *args, **kwargs):
if 'safe_mode' in kwargs:
warnings.warn('"safe_mode" is deprecated in Python-Markdown. '
'Use an HTML sanitizer (like '
'Bleach http://bleach.readthedocs.org/) '
'Bleach https://bleach.readthedocs.io/) '
'if you are parsing untrusted markdown text. '
'See the 2.6 release notes for more info',
DeprecationWarning)
Expand Down