Function: org-html-format-inlinetask-default-function

org-html-format-inlinetask-default-function is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-format-inlinetask-default-function TODO TODO-TYPE PRIORITY TEXT TAGS CONTENTS INFO)

Documentation

Default format function for inlinetasks.

See org-html-format-inlinetask-function for details and the description of TODO, TODO-TYPE, PRIORITY, TEXT, TAGS, CONTENTS, and INFO arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html-format-inlinetask-default-function
    (todo todo-type priority text tags contents info)
  "Default format function for inlinetasks.
See `org-html-format-inlinetask-function' for details and the
description of TODO, TODO-TYPE, PRIORITY, TEXT, TAGS, CONTENTS, and
INFO arguments."
  (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
	  (org-html-format-headline-default-function
	   todo todo-type priority text tags info)
	  (org-html-close-tag "br" nil info)
	  (or contents "")))