Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
598 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: find and replace on region
  3. # contributor : Xah Lee
  4. # --
  5. (defun replace-html-chars-region (start end)
  6. "Replace “<” to “&lt;” and other chars in HTML.
  7. This works on the current region."
  8. (interactive "r")
  9. (save-restriction
  10. (narrow-to-region start end)
  11. (goto-char (point-min))
  12. (while (search-forward "&" nil t) (replace-match "&amp;" nil t))
  13. (goto-char (point-min))
  14. (while (search-forward "<" nil t) (replace-match "&lt;" nil t))
  15. (goto-char (point-min))
  16. (while (search-forward ">" nil t) (replace-match "&gt;" nil t))
  17. )
  18. )