Function: org-html-close-tag
org-html-close-tag is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-close-tag TAG ATTR INFO)
Documentation
Return close-tag for string TAG.
ATTR specifies additional attributes. INFO is a property list containing current export state.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html-close-tag (tag attr info)
"Return close-tag for string TAG.
ATTR specifies additional attributes. INFO is a property list
containing current export state."
(concat "<" tag
(org-string-nw-p (concat " " attr))
(if (org-html-xhtml-p info) " />" ">")))