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
I noticed an odd bug when Converting an <img> tag containing:
A hyphen in the src
A src longer than 74 characters
Converting a <img> tag with a src of 74 characters or less works fine
> # Note the missing "y" in the last word, "supply"
>img = '<img src="http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_suppl.jpg">'
>html2text.html2text(img)
u'![](http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_suppl.jpg)\n\n'
> # Note the addition of the "y" in the last word, "supply"
>img = '<img src="http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_supply.jpg">'
>html2text.html2text(img)
u'![](http://matthewmoisen.com/blog/wp-\ncontent/matthew_moisen_tractor_supply.jpg)\n\n'
See how a \n character has been added after wp- ?
The text was updated successfully, but these errors were encountered:
I noticed an odd bug when Converting an <img> tag containing:
A hyphen in the src
A src longer than 74 characters
Converting a <img> tag with a src of 74 characters or less works fine
> # Note the missing "y" in the last word, "supply"
>img = '<img src="http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_suppl.jpg">'
>html2text.html2text(img)
u'![](http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_suppl.jpg)\n\n'
> # Note the addition of the "y" in the last word, "supply"
>img = '<img src="http://matthewmoisen.com/blog/wp-content/matthew_moisen_tractor_supply.jpg">'
>html2text.html2text(img)
u'![](http://matthewmoisen.com/blog/wp-\ncontent/matthew_moisen_tractor_supply.jpg)\n\n'
See how a \n character has been added after wp- ?
HI, i have the same problem as you so how did you resolve it? thx
I noticed an odd bug when Converting an
<img>
tag containing:Converting a
<img>
tag with a src of 74 characters or less works fineSee how a
\n
character has been added after wp- ?The text was updated successfully, but these errors were encountered: