Function: org-html-drawer

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

Signature

(org-html-drawer DRAWER CONTENTS INFO)

Documentation

Transcode a DRAWER element from Org to HTML.

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

Source Code

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

(defun org-html-drawer (drawer contents info)
  "Transcode a DRAWER element from Org to HTML.
CONTENTS holds the contents of the block.  INFO is a plist
holding contextual information."
  (funcall (plist-get info :html-format-drawer-function)
	   (org-element-property :drawer-name drawer)
	   contents))