Skip to content

Commit

Permalink
Release 2024.2.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Alir3z4 committed Feb 25, 2024
1 parent 42278c6 commit ff0db81
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
10 changes: 6 additions & 4 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
UNRELEASED
==========
2024.2.25
=========
----

* Fix #332: Insert at most one space for multiple emphasis
Expand All @@ -12,10 +12,12 @@ UNRELEASED
* Feature #198: Ignore ``<p>`` tags inside table rows.
* Don't wrap tables by default and add a ``--wrap-tables`` config option
* Remove support for Python ≤ 3.5. Now requires Python 3.6+.
* Support for Python 3.10.
* Fix #320 padding empty tables and tables with no </tr> tags.
* Support for Python 3.10+.
* Fix #320 padding empty tables and tables with no ``</tr>`` tags.
* Add ``ignore_mailto_links`` config option to ignore ``mailto:`` style links.
* Feature #407: Support the superscript and subscript tags.
* Fix #373: ``\n`` inside text of a Markdown link.
* Feature #406: Improve support for null atttibute values.



Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# html2text

[![Build Status](https://secure.travis-ci.org/Alir3z4/html2text.png)](https://travis-ci.org/Alir3z4/html2text)
[![Coverage Status](https://coveralls.io/repos/Alir3z4/html2text/badge.png)](https://coveralls.io/r/Alir3z4/html2text)
[![Downloads](http://badge.kloud51.com/pypi/d/html2text.png)](https://pypi.org/project/html2text/)
[![Version](http://badge.kloud51.com/pypi/v/html2text.png)](https://pypi.org/project/html2text/)
[![Wheel?](http://badge.kloud51.com/pypi/wheel/html2text.png)](https://pypi.org/project/html2text/)
[![Format](http://badge.kloud51.com/pypi/format/html2text.png)](https://pypi.org/project/html2text/)
[![License](http://badge.kloud51.com/pypi/license/html2text.png)](https://pypi.org/project/html2text/)
[![CI](https://github.com/Alir3z4/html2text/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/Alir3z4/html2text/actions/workflows/main.yml)
[![codecov](https://codecov.io/gh/Alir3z4/html2text/graph/badge.svg?token=OoxiyymjgU)](https://codecov.io/gh/Alir3z4/html2text)



html2text is a Python script that converts a page of HTML into clean, easy-to-read plain ASCII text. Better yet, that ASCII also happens to be valid Markdown (a text-to-HTML format).
Expand Down
2 changes: 1 addition & 1 deletion html2text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
unifiable_n,
)

__version__ = (2020, 1, 16)
__version__ = (2024, 2, 25)


# TODO:
Expand Down

0 comments on commit ff0db81

Please sign in to comment.