Function: org-html--priority

org-html--priority is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html--priority PRIORITY INFO)

Documentation

Format a priority into HTML.

PRIORITY is the character code of the priority or nil. INFO is a plist containing export options.

Source Code

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

(defun org-html--priority (priority _info)
  "Format a priority into HTML.
PRIORITY is the character code of the priority or nil.  INFO is
a plist containing export options."
  (and priority (format "<span class=\"priority\">[%c]</span>" priority)))