Variable: org-html-format-inlinetask-function

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

Value

org-html-format-inlinetask-default-function

Documentation

Function called to format an inlinetask in HTML code.

The function must accept seven 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.
  INFO the export options, as a plist

The function should return the string to be exported.

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

Source Code

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

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

The function must accept seven 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.
  INFO      the export options, as a plist

The function should return the string to be exported."
  :group 'org-export-html
  :version "26.1"
  :package-version '(Org . "8.3")
  :type 'function)