Variable: markdown-hr-strings

markdown-hr-strings is a customizable variable defined in markdown-mode.el.

Value

("-------------------------------------------------------------------------------"
 "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *"
 "---------------------------------------"
 "* * * * * * * * * * * * * * * * * * * *" "---------" "* * * * *")

Documentation

Strings to use when inserting horizontal rules.

The first string in the list will be the default when inserting a horizontal rule. Strings should be listed in decreasing order of prominence (as in headings from level one to six) for use with promotion and demotion functions.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-hr-strings
  '("-------------------------------------------------------------------------------"
    "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *"
    "---------------------------------------"
    "* * * * * * * * * * * * * * * * * * * *"
    "---------"
    "* * * * *")
  "Strings to use when inserting horizontal rules.
The first string in the list will be the default when inserting a
horizontal rule.  Strings should be listed in decreasing order of
prominence (as in headings from level one to six) for use with
promotion and demotion functions."
  :group 'markdown
  :type '(repeat string))