Function: org-html-property-drawer

org-html-property-drawer is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-property-drawer PROPERTY-DRAWER CONTENTS INFO)

Documentation

Transcode a PROPERTY-DRAWER element from Org to HTML.

CONTENTS holds the contents of the drawer. INFO is a plist holding contextual information.

Source Code

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

(defun org-html-property-drawer (_property-drawer contents _info)
  "Transcode a PROPERTY-DRAWER element from Org to HTML.
CONTENTS holds the contents of the drawer.  INFO is a plist
holding contextual information."
  (and (org-string-nw-p contents)
       (format "<pre class=\"example\">\n%s</pre>" contents)))