Variable: org-texinfo-format-drawer-function
org-texinfo-format-drawer-function is a customizable variable defined
in ox-texinfo.el.gz.
Value
#[514 "\207" [] 3
("/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/lisp/org/ox-texinfo.elc"
. 3637)]
Documentation
Function called to format a drawer in Texinfo code.
The function must accept two parameters:
NAME the drawer name, like "LOGBOOK"
CONTENTS the contents of the drawer.
The function should return the string to be exported.
The default function simply returns the value of CONTENTS.
This variable was added, or its default value changed, in Org version
8.2.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Drawers
(defcustom org-texinfo-format-drawer-function (lambda (_name contents) contents)
"Function called to format a drawer in Texinfo code.
The function must accept two parameters:
NAME the drawer name, like \"LOGBOOK\"
CONTENTS the contents of the drawer.
The function should return the string to be exported.
The default function simply returns the value of CONTENTS."
:version "24.4"
:package-version '(Org . "8.2")
:type 'function)