Variable: rst-toc-insert-style

rst-toc-insert-style is a customizable variable defined in rst.el.gz.

Value

fixed

Documentation

Insertion style for table-of-contents.

Set this to one of the following values to determine numbering and indentation style:
- plain: no numbering (fixed indentation)
- fixed: numbering, but fixed indentation
- aligned: numbering, titles aligned under each other
- listed: titles as list items

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defcustom rst-toc-insert-style 'fixed
  "Insertion style for table-of-contents.
Set this to one of the following values to determine numbering and
indentation style:
- `plain': no numbering (fixed indentation)
- `fixed': numbering, but fixed indentation
- `aligned': numbering, titles aligned under each other
- `listed': titles as list items"
  :type '(choice (const plain)
                 (const fixed)
                 (const aligned)
                 (const listed))
  :group 'rst-toc)