ox-html.el (org-html-format-headline-function): Fix docstring

* ox-html.el (org-html-format-headline-function): Fix docstring.
This commit is contained in:
Bastien Guerry 2013-02-24 10:01:39 +01:00
parent f8e87473d7
commit d242be2c89

View file

@ -359,19 +359,7 @@ PRIORITY the priority of the headline (integer or nil)
TEXT the main headline text (string).
TAGS the tags (string or nil).
The function result will be used in the section format string.
As an example, one could set the variable to the following, in
order to reproduce the default set-up:
\(defun org-html-format-headline \(todo todo-type priority text tags)
\"Default format function for a headline.\"
\(concat \(when todo
\(format \"\\\\textbf{\\\\textsc{\\\\textsf{%s}}} \" todo))
\(when priority
\(format \"\\\\framebox{\\\\#%c} \" priority))
text
\(when tags (format \"\\\\hfill{}\\\\textsc{%s}\" tags))))"
The function result will be used in the section format string."
:group 'org-export-html
:type 'function)