Function: org-ascii-drawer

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

Signature

(org-ascii-drawer DRAWER CONTENTS INFO)

Documentation

Transcode a DRAWER element from Org to ASCII.

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

Source Code

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

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