Variable: markdown-ts--explicit-id-re

markdown-ts--explicit-id-re is a variable defined in markdown-ts-mode.el.gz.

Value

"[      ]*{[    ]*#\\([^}       ]+\\)[  ]*}[    ]*\\'"

Documentation

Match a Pandoc-style trailing {#id} on a heading line.

Capture group 1 is the explicit id.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defconst markdown-ts--explicit-id-re
  "[ \t]*{[ \t]*#\\([^} \t]+\\)[ \t]*}[ \t]*\\'"
  "Match a Pandoc-style trailing `{#id}' on a heading line.
Capture group 1 is the explicit id.")