Variable: markdown-regex-inline-attributes

markdown-regex-inline-attributes is a variable defined in markdown-mode.el.

Value

"[      ]*\\(?:{:?\\)[  ]*\\(?:\\(?:#[[:alpha:]_.:-]+\\|\\.[[:alpha:]_.:-]+\\|\\w+=['\"]?[^\n'\"}]*['\"]?\\),?[         ]*\\)+\\(?:}\\)[        ]*$"

Documentation

Regular expression for matching inline identifiers or attribute lists.

Compatible with Pandoc, Python Markdown, PHP Markdown Extra, and Leanpub.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-inline-attributes
  "[ \t]*\\(?:{:?\\)[ \t]*\\(?:\\(?:#[[:alpha:]_.:-]+\\|\\.[[:alpha:]_.:-]+\\|\\w+=['\"]?[^\n'\"}]*['\"]?\\),?[ \t]*\\)+\\(?:}\\)[ \t]*$"
  "Regular expression for matching inline identifiers or attribute lists.
Compatible with Pandoc, Python Markdown, PHP Markdown Extra, and Leanpub.")