Function: org-texinfo-property-drawer
org-texinfo-property-drawer is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo-property-drawer PROPERTY-DRAWER CONTENTS INFO)
Documentation
Transcode a PROPERTY-DRAWER element from Org to Texinfo.
CONTENTS holds the contents of the drawer. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Property Drawer
(defun org-texinfo-property-drawer (_property-drawer contents _info)
"Transcode a PROPERTY-DRAWER element from Org to Texinfo.
CONTENTS holds the contents of the drawer. INFO is a plist
holding contextual information."
(and (org-string-nw-p contents)
(format "@verbatim\n%s@end verbatim" contents)))