Function: org-texinfo-format-headline-default-function
org-texinfo-format-headline-default-function is a byte-compiled
function defined in ox-texinfo.el.gz.
Signature
(org-texinfo-format-headline-default-function TODO TODO-TYPE PRIORITY TEXT TAGS)
Documentation
Default format function for a headline.
See org-texinfo-format-headline-function for details.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
(defun org-texinfo-format-headline-default-function
(todo _todo-type priority text tags)
"Default format function for a headline.
See `org-texinfo-format-headline-function' for details."
(concat (and todo (format "@strong{%s} " todo))
(and priority (format "@emph{#%s} " priority))
text
(and tags (concat " " (org-make-tag-string tags)))))