Skip to content

Commit ff0db81

Browse files
committed
Release 2024.2.25
1 parent 42278c6 commit ff0db81

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

ChangeLog.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
UNRELEASED
2-
==========
1+
2024.2.25
2+
=========
33
----
44

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

2022

2123

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
# html2text
22

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

117

128
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).

html2text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
unifiable_n,
2828
)
2929

30-
__version__ = (2020, 1, 16)
30+
__version__ = (2024, 2, 25)
3131

3232

3333
# TODO:

0 commit comments

Comments
 (0)