Variable: rst-initial-items
rst-initial-items is a variable defined in rst.el.gz.
Value
("-" "*" "+" "•" "‣" "⁃" "#." "1." "a." "A." "I." "i." "(#)" "(1)" "(a)" "(A)" "(I)" "(i)" "#)" "1)" "a)" "A)" "I)" "i)")
Documentation
List of initial items. It's a collection of bullets and enumerations.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defconst rst-initial-items
(append (mapcar #'char-to-string rst-bullets)
(let (vals)
(dolist (fmt '("%s." "(%s)" "%s)"))
(dolist (c '("#" "1" "a" "A" "I" "i"))
(push (format fmt c) vals)))
(nreverse vals)))
"List of initial items. It's a collection of bullets and enumerations.")