15
0

- Update to 2019.8.11:

* Fix #201: handle ‎/‏ marks mid-text within stressed tags or right after stressed tags.
  * Feature #213: images_as_html config option to always generate an img html tag. preserves "height", "width" and "alt" if possible.
  * Remove support for end-of-life Pythons. Now requires Python 2.7 or 3.4+.
  * Remove support for retrieving HTML over the network.
  * Add __main__.py module to allow running the CLI using python -m html2text ....
  * Fix #238: correct spacing when a HTML entity follows a non-stressed tags which follow a stressed tag.
  * Remove unused or deprecated: * html2text.compat.escape() * html2text.config.RE_UNESCAPE * html2text.HTML2Text.replaceEntities() * html2text.HTML2Text.unescape() * html2text.unescape()
  * Fix #208: handle LEFT-TO-RIGHT MARK after a stressed tag.
- Remove patch remove_unittest2.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-html2text?expand=0&rev=31
This commit is contained in:
Tomáš Chvátal
2019-09-12 08:55:43 +00:00
committed by Git OBS Bridge
parent 725174c03e
commit 6af028befc
5 changed files with 21 additions and 77 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Sep 12 08:45:34 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 2019.8.11:
* Fix #201: handle &lrm;/&rlm; marks mid-text within stressed tags or right after stressed tags.
* Feature #213: images_as_html config option to always generate an img html tag. preserves "height", "width" and "alt" if possible.
* Remove support for end-of-life Pythons. Now requires Python 2.7 or 3.4+.
* Remove support for retrieving HTML over the network.
* Add __main__.py module to allow running the CLI using python -m html2text ....
* Fix #238: correct spacing when a HTML entity follows a non-stressed tags which follow a stressed tag.
* Remove unused or deprecated: * html2text.compat.escape() * html2text.config.RE_UNESCAPE * html2text.HTML2Text.replaceEntities() * html2text.HTML2Text.unescape() * html2text.unescape()
* Fix #208: handle LEFT-TO-RIGHT MARK after a stressed tag.
- Remove patch remove_unittest2.patch
-------------------------------------------------------------------
Tue Dec 4 12:48:56 UTC 2018 - Matej Cepl <mcepl@suse.com>