Skip to content

Instantly share code, notes, and snippets.

@hadashiA
Created April 24, 2012 08:49
Show Gist options
  • Save hadashiA/2478018 to your computer and use it in GitHub Desktop.
Save hadashiA/2478018 to your computer and use it in GitHub Desktop.
HTML special char quote
(defun html-quote (str)
(replace-regexp-in-string "[&<>]"
(lambda (m)
(or (cdr (assq (string-to-char m)
'((?& . "&amp;")
(?< . "&lt;")
(?> . "&gt;"))))
m))
str))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment