Function: org-dynamic-block-function

org-dynamic-block-function is a byte-compiled function defined in org.el.gz.

Signature

(org-dynamic-block-function TYPE)

Documentation

Return function associated to a given dynamic block type.

TYPE is the dynamic block type, as a string.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-dynamic-block-function (type)
  "Return function associated to a given dynamic block type.
TYPE is the dynamic block type, as a string."
  (cdr (assoc type org-dynamic-block-alist)))