やるきなし

2021/07/23 20:04 / 日本語 Markdown の改行が Pandoc でスペースに変換される問題(`east_asian_line_breaks` 拡張)

日本語で書いた Markdown を pandoc で変換する際,改行がスペースに変換されてしまう問題,east_asian_line_breaks という拡張が存在していてそれを使えば解決できるらしい.今まで改行なしでパラグラフを書いていて,git diff とかが見づらかったのだが,これで解決できる.

% cat test.md
これ
は
this is
a test
です
% cat test.md | pandoc -f markdown
<p>これ は this is a test です</p>
% cat test.md | pandoc -f markdown+ignore_line_breaks
<p>これはthis isa testです</p>
% cat test.md | pandoc -f markdown+east_asian_line_breaks
<p>これは this is a test です</p>

Related articles