Function: org-ascii-property-drawer

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

Signature

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

Documentation

Transcode a PROPERTY-DRAWER element from Org to ASCII.

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

Source Code

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

(defun org-ascii-property-drawer (property-drawer contents info)
  "Transcode a PROPERTY-DRAWER element from Org to ASCII.
CONTENTS holds the contents of the drawer.  INFO is a plist
holding contextual information."
  (and (org-string-nw-p contents)
       (org-ascii--justify-element contents property-drawer info)))