Variable: org-texinfo-format-inlinetask-function

org-texinfo-format-inlinetask-function is a customizable variable defined in ox-texinfo.el.gz.

Value

org-texinfo-format-inlinetask-default-function

Documentation

Function called to format an inlinetask in Texinfo code.

The function must accept six parameters:
  TODO the todo keyword, as a string
  TODO-TYPE the todo type, a symbol among todo, done and nil.
  PRIORITY the inlinetask priority, as a string
  NAME the inlinetask name, as a string.
  TAGS the inlinetask tags, as a list of strings.
  CONTENTS the contents of the inlinetask, as a string.

The function should return the string to be exported.

Source Code

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

(defcustom org-texinfo-format-inlinetask-function
  'org-texinfo-format-inlinetask-default-function
  "Function called to format an inlinetask in Texinfo code.

The function must accept six parameters:
  TODO      the todo keyword, as a string
  TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
  PRIORITY  the inlinetask priority, as a string
  NAME      the inlinetask name, as a string.
  TAGS      the inlinetask tags, as a list of strings.
  CONTENTS  the contents of the inlinetask, as a string.

The function should return the string to be exported."
  :type 'function)