vivliostyle / vfm

⬇️ Open and extendable Markdown syntax and toolchain.
https://vivliostyle.github.io/vfm/#/vfm
Other
69 stars 12 forks source link

nbsp is removed after line break #110

Open MurakamiShinyu opened 3 years ago

MurakamiShinyu commented 3 years ago

Issue Details

改行のあとにある  (U+00A0) 文字が消えてしまいます。

AAA\
 BBB

<p>AAA<br>BBB</p>

Expected Behavior

<p>AAA<br>&nbsp;BBB</p>

&nbsp; ではなくて U+00A0 文字がそのまま出力されるのでも可)

akabekobeko commented 3 years ago

メモ。 remark (GFM/CommonMark モード) 関連の文字参照、文字実体参照の扱いについて調べる。

MurakamiShinyu commented 3 years ago
akabekobeko commented 3 years ago

ありがとうございます。問題を切り分けるために素の remark だけで起きるか、などを確認します。

MurakamiShinyu commented 3 years ago

nbsp に限らず、ほかのスペース文字(全角スペースなど)でも問題が起きました。複数のスペース文字の連続では全部消えます。

AAA\
   BBB

(BBB の前に全角スペース U+3000 が3つあります) ↓

<p>AAA<br>BBB</p>