inline tags within strong/strike/u/i/em/... do not handle spaces correctly
オープン
- 主要言語
- Python
- スター
- 2.2k
- フォーク
- 296
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Some inline tags require removing space between text and markdown (`TEXT ` => `**TEXT**`)
When adding another inline tag within these tags space removal does not work proper any more:
```python
from html2text import html2text
print(html2text("X"))) # returns "**X**" => OK
print(html2text("X "))) # returns "**X**" => OK
print(html2text("X "))) # returns "**X **" => INVALID (expected "**X**")
print(html2text("X Y"))) # returns "**XY**" => INVALID (expected "**X Y**")
```
- Version by `html2text --version`: 2020.1.16
- Python version `python --version`: 3.6.3
コントリビューションガイド
評価
この issue はまだ評価されていません。