diff -Nru mistune-0.8.1/appveyor.yml mistune-0.8.3/appveyor.yml --- mistune-0.8.1/appveyor.yml 2017-11-20 15:17:28.000000000 +0000 +++ mistune-0.8.3/appveyor.yml 2017-12-04 05:01:44.000000000 +0000 @@ -3,7 +3,6 @@ environment: matrix: - PYTHON: "C:\\Python27-x64" - - PYTHON: "C:\\Python35-x64" init: diff -Nru mistune-0.8.1/CHANGES.rst mistune-0.8.3/CHANGES.rst --- mistune-0.8.1/CHANGES.rst 2017-11-20 15:17:28.000000000 +0000 +++ mistune-0.8.3/CHANGES.rst 2017-12-04 05:01:44.000000000 +0000 @@ -3,6 +3,24 @@ Here is the full history of mistune. +Version 0.8.3 +~~~~~~~~~~~~~ + +Relased on Dec. 04, 2017 + +* Fix nested html issue. `#137`_ + +.. _`#137`: https://github.com/lepture/mistune/pull/137 + + +Version 0.8.2 +~~~~~~~~~~~~~ + +Relased on Dec. 04, 2017 + +* Fix ``_keyify`` with lower case. + + Version 0.8.1 ~~~~~~~~~~~~~ diff -Nru mistune-0.8.1/debian/changelog mistune-0.8.3/debian/changelog --- mistune-0.8.1/debian/changelog 2017-11-21 14:48:51.000000000 +0000 +++ mistune-0.8.3/debian/changelog 2018-02-18 03:59:18.000000000 +0000 @@ -1,3 +1,21 @@ +mistune (0.8.3-2) unstable; urgency=medium + + [ Ondřej Nový ] + * d/control: Set Vcs-* to salsa.debian.org + * d/copyright: Fix Format URL to correct one + + [ Tristan Seligmann ] + * Bump Standards-Version to 4.1.3 (no changes). + + -- Tristan Seligmann Sun, 18 Feb 2018 05:59:18 +0200 + +mistune (0.8.3-1) unstable; urgency=medium + + * New upstream release. + * Bump std-ver to 4.1.2.0. + + -- Julien Puydt Fri, 08 Dec 2017 10:03:09 +0100 + mistune (0.8.1-1) unstable; urgency=medium * New upstream release. diff -Nru mistune-0.8.1/debian/control mistune-0.8.3/debian/control --- mistune-0.8.1/debian/control 2017-11-21 14:48:51.000000000 +0000 +++ mistune-0.8.3/debian/control 2018-02-18 03:59:18.000000000 +0000 @@ -4,13 +4,13 @@ Tristan Seligmann Section: python Priority: optional -Standards-Version: 4.1.1 +Standards-Version: 4.1.3 Homepage: https://github.com/lepture/mistune Build-Depends: debhelper (>= 10), dh-python, python, python-setuptools, python-nose, python3, python3-setuptools, python3-nose X-Python-Version: >= 2.7 X-Python3-Version: >= 3.2 -Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/mistune.git -Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/mistune.git +Vcs-Git: https://salsa.debian.org/python-team/modules/mistune.git +Vcs-Browser: https://salsa.debian.org/python-team/modules/mistune Package: python-mistune Architecture: all diff -Nru mistune-0.8.1/debian/copyright mistune-0.8.3/debian/copyright --- mistune-0.8.1/debian/copyright 2017-11-21 14:48:51.000000000 +0000 +++ mistune-0.8.3/debian/copyright 2018-02-18 03:59:18.000000000 +0000 @@ -1,4 +1,4 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0 +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: mistune Files: * diff -Nru mistune-0.8.1/mistune.py mistune-0.8.3/mistune.py --- mistune-0.8.1/mistune.py 2017-11-20 15:17:28.000000000 +0000 +++ mistune-0.8.3/mistune.py 2017-12-04 05:01:44.000000000 +0000 @@ -11,7 +11,7 @@ import re import inspect -__version__ = '0.8.1' +__version__ = '0.8.3' __author__ = 'Hsiaoming Yang ' __all__ = [ 'BlockGrammar', 'BlockLexer', @@ -503,7 +503,7 @@ 'linebreak', 'strikethrough', 'text', ] inline_html_rules = [ - 'escape', 'autolink', 'url', 'link', 'reflink', + 'escape', 'inline_html', 'autolink', 'url', 'link', 'reflink', 'nolink', 'double_emphasis', 'emphasis', 'code', 'linebreak', 'strikethrough', 'text', ] diff -Nru mistune-0.8.1/tests/test_extra.py mistune-0.8.3/tests/test_extra.py --- mistune-0.8.1/tests/test_extra.py 2017-11-20 15:17:28.000000000 +0000 +++ mistune-0.8.3/tests/test_extra.py 2017-12-04 05:01:44.000000000 +0000 @@ -116,6 +116,21 @@ assert '' not in ret +def test_parse_nested_html(): + ret = mistune.markdown( + '', + parse_block_html=True, escape=False + ) + assert '