You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The html code X<b>one</b>, two is translated into X **one** , two\n\n, but should be translated into X**one**, two\n\n instead (without spaces around one).
Version by html2text --version: 2020.1.16
Test script
import html2text
h = html2text.HTML2Text()
h.handle('X<b>one</b>, two')
Python version python --version: 3.8.2
The text was updated successfully, but these errors were encountered:
The html code
X<b>one</b>, two
is translated intoX **one** , two\n\n
, but should be translated intoX**one**, two\n\n
instead (without spaces around one).Version by
html2text --version
: 2020.1.16Test script
python --version
: 3.8.2The text was updated successfully, but these errors were encountered: