Function: org-odt-drawer

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

Signature

(org-odt-drawer DRAWER CONTENTS INFO)

Documentation

Transcode a DRAWER element from Org to ODT.

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

Source Code

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

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