Function: org-element-inline-babel-call-interpreter

org-element-inline-babel-call-interpreter is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-inline-babel-call-interpreter INLINE-BABEL-CALL _)

Documentation

Interpret INLINE-BABEL-CALL object as Org syntax.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-inline-babel-call-interpreter (inline-babel-call _)
  "Interpret INLINE-BABEL-CALL object as Org syntax."
  (concat "call_"
	  (org-element-property :call inline-babel-call)
	  (let ((h (org-element-property :inside-header inline-babel-call)))
	    (and h (format "[%s]" h)))
	  "(" (org-element-property :arguments inline-babel-call) ")"
	  (let ((h (org-element-property :end-header inline-babel-call)))
	    (and h (format "[%s]" h)))))