Skip to content

Instantly share code, notes, and snippets.

@kliph
Created May 20, 2013 18:45
Show Gist options
  • Save kliph/5614342 to your computer and use it in GitHub Desktop.
Save kliph/5614342 to your computer and use it in GitHub Desktop.
(defun wrap-region-in-md-kbd-tags ()
"Wraps the selected region in HTML keyboard (<kbd></kbd>) tags
to create keyboard glyphs."
(interactive "r")
(save-excursion
(narrow-to-region (region-beginning) (region-end))
(goto-char (point-min))
(insert "<kbd>")
(goto-char (point-max))
(insert "</kbd>")
(widen))
(goto-char (+ (region-end) 6)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment