このブログはorg2blogで書いているが、どうにも日本語に変な空白が混ざるときがあった。調べると同一の現象を解決しているする方法が2つあった。
一つ目の方法は perl スクリプトがいることや少し古めの記事であったため、二つ目の方法を採用することにした。
記事のままであるが、下記にその elisp を転載する。
(defun remove-org-newlines-at-cjk-text (&optional _mode) "先頭が '*', '#', '|' でなく、改行の前後が日本の文字の場合はその改行を除去する。" (interactive) (goto-char (point-min)) (while (re-search-forward "^\\([^|#*\n].+\\)\\(.\\)\n *\\(.\\)" nil t) (if (and (> (string-to-char (match-string 2)) #x2000) (> (string-to-char (match-string 3)) #x2000)) (replace-match "\\1\\2\\3")) (goto-char (point-at-bol)))) (with-eval-after-load "ox" (add-hook 'org-export-before-processing-hook 'remove-org-newlines-at-cjk-text))