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
Whenever we give
Input: <p>1. Hello My name is Subham</p> to this html2text.
output: 1\. Hello My name is Subham
The extra "" after numeric digit is not needed. This is very specific appearing after numerics whenever there is a "." (dot) and whitespace following to it.
Could you please help to escape this.
The text was updated successfully, but these errors were encountered:
The Issue happens at utils.py package file (Python37\Lib\site-packages\html2text\utils.py) at lines 210.
Here are those lines that work:
text = config.RE_MD_DOT_MATCHER.sub(r"\1\2", text)
These lines originally have 2 extra backslashes, just replacing this one lines should fix this issue. Not sure if it could break something else.
html2text --2020.1.16
python --3.9
Hello Team,
Whenever we give
Input:
<p>1. Hello My name is Subham</p>
to this html2text.output:
1\. Hello My name is Subham
The extra "" after numeric digit is not needed. This is very specific appearing after numerics whenever there is a "." (dot) and whitespace following to it.
Could you please help to escape this.
The text was updated successfully, but these errors were encountered: