Variable: markdown-regex-kbd

markdown-regex-kbd is a variable defined in markdown-mode.el.

Value

"\\(?1:<kbd>\\)\\(?2:\\(?:.\\|\n[^\n]\\)*?\\)\\(?3:</kbd>\\)"

Documentation

Regular expression for matching <kbd> tags.

Groups 1 and 3 match the opening and closing tags. Group 2 matches the key sequence.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-kbd
  "\\(?1:<kbd>\\)\\(?2:\\(?:.\\|\n[^\n]\\)*?\\)\\(?3:</kbd>\\)"
  "Regular expression for matching <kbd> tags.
Groups 1 and 3 match the opening and closing tags.
Group 2 matches the key sequence.")