回答:
これが私のブログに使用するものです。
(define-key org-mode-map "\C-ck" #'endless/insert-key)
(defun endless/insert-key (key)
"Ask for a key then insert its description.
Will work on both org-mode and any mode that accepts plain html."
(interactive "kType key sequence: ")
(let* ((is-org-mode (derived-mode-p 'org-mode))
(tag (if is-org-mode
"@@html:<kbd>%s</kbd>@@"
"<kbd>%s</kbd>")))
(if (null (equal key "\r"))
(insert
(format tag (help-key-description key nil)))
(insert (format tag ""))
(forward-char (if is-org-mode -8 -6)))))
を呼び出して呼び出しC-c k
ます。
C-h k
。<kbd>
タグに囲まれたキーを挿入します。RET
押すだけで、タグを挿入し、キーを挿入する代わりにポイントを内部に残すため、より複雑なキーを入力できます。org-mode
!(define-key org-mode-map (kbd "C-c k") #'endless/insert-key)
とは(define-key org-mode-map (kbd "C-c k") 'endless/insert-key)
?
(help-key-description key nil)
します(mapconcat 'identity (split-string (help-key-description key nil)) "</kbd><kbd>")