Variable: org-texinfo-compact-itemx

org-texinfo-compact-itemx is a customizable variable defined in ox-texinfo.el.gz.

Value

nil

Documentation

Non-nil means certain items in description list become @itemx.

If this is non-nil and an item in a description list has no body but is followed by another item, then the second item is transcoded to @itemx. See info node (org)Plain lists in Texinfo export for how to enable this for individual lists.

This variable was added, or its default value changed, in Org version
9.6.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Itemx

(defcustom org-texinfo-compact-itemx nil
  "Non-nil means certain items in description list become `@itemx'.

If this is non-nil and an item in a description list has no
body but is followed by another item, then the second item is
transcoded to `@itemx'.  See info node `(org)Plain lists in
Texinfo export' for how to enable this for individual lists."
  :package-version '(Org . "9.6")
  :type 'boolean
  :safe t)