Function: org-html-fix-class-name

org-html-fix-class-name is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-fix-class-name KWD)

Documentation

Turn todo keyword KWD into a valid class name.

Replaces invalid characters with "_".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html-fix-class-name (kwd)	; audit callers of this function
  "Turn todo keyword KWD into a valid class name.
Replaces invalid characters with \"_\"."
  (replace-regexp-in-string "[^a-zA-Z0-9_]" "_" kwd nil t))