Function: org-element--parray--inliner

org-element--parray--inliner is a function defined in org-element-ast.el.gz.

Signature

(org-element--parray--inliner INLINE--FORM NODE)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element-ast.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form node)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp node)
	  (node
	   (if (macroexp-copyable-p exp) exp (make-symbol "node")))
	  (body
	   (list 'pcase (list 'org-element-type node)
		 (list (list '\` nil) nil)
		 (list (list '\` 'plain-text) nil)
		 (list '_
		       (list 'if
			     (list 'eq :standard-properties
				   (list 'car (list 'nth 1 node)))
			     (list 'cadr (list 'nth 1 node))
			     (list 'plist-get (list 'nth 1 node)
				   :standard-properties))))))
       (if (eq node exp) body
	 (macroexp-let* (list (list node exp)) body)))))
  (t)]