Function: org-html-xhtml-p
org-html-xhtml-p is a byte-compiled function defined in ox-html.el.gz.
Signature
(org-html-xhtml-p INFO)
Documentation
Return non-nil when :html-doctype property in INFO plist is xhtml.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;; Internal Functions
(defun org-html-xhtml-p (info)
"Return non-nil when :html-doctype property in INFO plist is xhtml."
(let ((dt (downcase (plist-get info :html-doctype))))
(string-match-p "xhtml" dt)))