Variable: org-ascii-format-inlinetask-function

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

Value

org-ascii-format-inlinetask-default

Documentation

Function called to format an inlinetask in ASCII.

The function must accept nine 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.
  WIDTH the width of the inlinetask, as a number.
  INLINETASK the inlinetask itself.
  INFO the info channel.

The function should return either the string to be exported or nil to ignore the inline task.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
(defcustom org-ascii-format-inlinetask-function
  'org-ascii-format-inlinetask-default
  "Function called to format an inlinetask in ASCII.

The function must accept nine 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.
  WIDTH      the width of the inlinetask, as a number.
  INLINETASK the inlinetask itself.
  INFO       the info channel.

The function should return either the string to be exported or
nil to ignore the inline task."
  :group 'org-export-ascii
  :version "26.1"
  :package-version '(Org . "8.3")
  :type 'function)