Variable: org-html-todo-kwd-class-prefix

org-html-todo-kwd-class-prefix is a customizable variable defined in ox-html.el.gz.

Value

""

Documentation

Prefix to class names for TODO keywords.

Each TODO keyword gets a class given by the keyword itself, with this prefix. The default prefix is empty because it is nice to just use the keyword as a class name. But if you get into conflicts with other, existing CSS classes, then this prefix can be very useful.

Source Code

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

(defcustom org-html-todo-kwd-class-prefix ""
  "Prefix to class names for TODO keywords.
Each TODO keyword gets a class given by the keyword itself, with this prefix.
The default prefix is empty because it is nice to just use the keyword
as a class name.  But if you get into conflicts with other, existing
CSS classes, then this prefix can be very useful."
  :group 'org-export-html
  :type 'string)