Variable: org-html-checkbox-types

org-html-checkbox-types is a variable defined in ox-html.el.gz.

Value

((unicode
  (on . "☑")
  (off . "☐")
  (trans . "☐"))
 (ascii
  (on . "<code>[X]</code>")
  (off . "<code>[&#xa0;]</code>")
  (trans . "<code>[-]</code>"))
 (html
  (on . "<input type='checkbox' checked='checked' />")
  (off . "<input type='checkbox' />")
  (trans . "<input type='checkbox' />")))

Documentation

Alist of checkbox types.

The cdr of each entry is an alist list three checkbox types for HTML export: on, off and trans.

The choices are:
  unicode Unicode characters (HTML entities)
  ascii ASCII characters
  html HTML checkboxes

Note that only the ascii characters implement tri-state checkboxes. The other two use the off checkbox for trans.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defconst org-html-checkbox-types
  '((unicode .
             ((on . "&#x2611;") (off . "&#x2610;") (trans . "&#x2610;")))
    (ascii .
           ((on . "<code>[X]</code>")
            (off . "<code>[&#xa0;]</code>")
            (trans . "<code>[-]</code>")))
    (html .
	  ((on . "<input type='checkbox' checked='checked' />")
	   (off . "<input type='checkbox' />")
	   (trans . "<input type='checkbox' />"))))
  "Alist of checkbox types.
The cdr of each entry is an alist list three checkbox types for
HTML export: `on', `off' and `trans'.

The choices are:
  `unicode' Unicode characters (HTML entities)
  `ascii'   ASCII characters
  `html'    HTML checkboxes

Note that only the ascii characters implement tri-state
checkboxes.  The other two use the `off' checkbox for `trans'.")