Function: org-html-format-headline-default-function
org-html-format-headline-default-function is a byte-compiled function
defined in ox-html.el.gz.
Signature
(org-html-format-headline-default-function TODO TODO-TYPE PRIORITY TEXT TAGS INFO)
Documentation
Default format function for a headline.
See org-html-format-headline-function for details and the
description of TODO, PRIORITY, TEXT, TAGS, and INFO arguments.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html-format-headline-default-function
(todo _todo-type priority text tags info)
"Default format function for a headline.
See `org-html-format-headline-function' for details and the
description of TODO, PRIORITY, TEXT, TAGS, and INFO arguments."
(let ((todo (org-html--todo todo info))
(priority (org-html--priority priority info))
(tags (org-html--tags tags info)))
(concat todo (and todo " ")
priority (and priority " ")
text
(and tags "   ") tags)))