Function: org-md-property-drawer

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

Signature

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

Documentation

Transcode a PROPERTY-DRAWER element into Markdown format.

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

Source Code

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

(defun org-md-property-drawer (_property-drawer contents _info)
  "Transcode a PROPERTY-DRAWER element into Markdown format.
CONTENTS holds the contents of the drawer.  INFO is a plist
holding contextual information."
  (and (org-string-nw-p contents)
       (replace-regexp-in-string "^" "    " contents)))