Function: org-element-org-data-interpreter

org-element-org-data-interpreter is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-org-data-interpreter ORG-DATA CONTENTS)

Documentation

Interpret ORG-DATA element as Org syntax.

CONTENTS is the contents of the element.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-org-data-interpreter (org-data contents)
  "Interpret ORG-DATA element as Org syntax.
CONTENTS is the contents of the element."
  (concat
   (make-string (or (org-element-property :pre-blank org-data) 0) ?\n)
   contents))