Alir3z4 / Alir3z4/html2text

Line breaks in bold renders incorrect markdown

オープン
#151 コメント 2 件 リアクション 5 件 担当者 0 名 GitHub で見る
bug
主要言語
Python
スター
2.2k
フォーク
296
PR マージ指標
30日以内にマージされた PR はありません

説明

Bold generally should not be allowed to have line breaks in between them, or have whitespace on the inside, or they'll be treated as literal asterisks. So for example:

```
Our bold text

```

Results in:
```
**Our bold text\n **
```
Which will not render in bold with most markdown interpreters.

Instead we should move trailing line breaks outside of the asterisks:

```
**Our bold text**\n
```

and end and re-start bold for if it's not trailing, eg:

```
Our multiline
bold text

```
to
```
**Our multiline**\n **bold text**
```

- Version by 2016.9.19
- Python version 2.7.6

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。