diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 8b68969..79538b0 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -507,7 +507,10 @@ use. If MODE is not nil, open a new buffer with the name (defun oni:replace-html-special-chars () "Replace special characters with HTML escaped entities." - (oni:replace-occurrences "é" "é")) + (oni:replace-occurrences "é" "é") + (oni:replace-occurrences "’" "’") + (oni:replace-occurrences "‘" "‘") + (oni:replace-occurrences "ë" "ë")) (defun oni:replace-occurrences (from to) "Replace all occurrences of FROM with TO in the current buffer."