We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
改行のあとにある (U+00A0) 文字が消えてしまいます。
例
AAA\ BBB
↓
<p>AAA<br>BBB</p>
<p>AAA<br> BBB</p>
( ではなくて U+00A0 文字がそのまま出力されるのでも可)
The text was updated successfully, but these errors were encountered:
メモ。 remark (GFM/CommonMark モード) 関連の文字参照、文字実体参照の扱いについて調べる。
Sorry, something went wrong.
行末の \ や行末に2つのスペースでの改行、あるいはオプション --hard-line-breaks の指定により、<br> が出力されたときこの問題が起きます。<br> を明示的に書いた場合には問題ありません。
\
--hard-line-breaks
<br>
文字参照ではなくて U+00A0 文字を直接入力(macでは option+space で入力)した場合でも同様です。
ありがとうございます。問題を切り分けるために素の remark だけで起きるか、などを確認します。
nbsp に限らず、ほかのスペース文字(全角スペースなど)でも問題が起きました。複数のスペース文字の連続では全部消えます。
AAA\ BBB
(BBB の前に全角スペース U+3000 が3つあります) ↓
akabekobeko
No branches or pull requests
Issue Details
改行のあとにある
(U+00A0) 文字が消えてしまいます。例
↓
Expected Behavior
(
ではなくて U+00A0 文字がそのまま出力されるのでも可)The text was updated successfully, but these errors were encountered: