Function: org-element-property-drawer-interpreter
org-element-property-drawer-interpreter is a byte-compiled function
defined in org-element.el.gz.
Signature
(org-element-property-drawer-interpreter _ CONTENTS)
Documentation
Interpret property-drawer element as Org syntax.
CONTENTS is the properties within the drawer.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-property-drawer-interpreter (_ contents)
"Interpret property-drawer element as Org syntax.
CONTENTS is the properties within the drawer."
(format ":PROPERTIES:\n%s:END:" contents))