Function: org-texinfo-drawer

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

Signature

(org-texinfo-drawer DRAWER CONTENTS INFO)

Documentation

Transcode a DRAWER element from Org to Texinfo.

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

Source Code

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

(defun org-texinfo-drawer (drawer contents info)
  "Transcode a DRAWER element from Org to Texinfo.
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 :texinfo-format-drawer-function)
			  name contents)))
    output))