Variable: org-dynamic-block-alist
org-dynamic-block-alist is a variable defined in org.el.gz.
Value
(("columnview" . org-columns-insert-dblock)
("clocktable" . org-clock-report))
Documentation
Alist defining all the Org dynamic blocks.
The key is the dynamic block type name, as a string. The value is the function used to insert the dynamic block.
Use org-dynamic-block-define to populate it.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defvar org-dynamic-block-alist nil
"Alist defining all the Org dynamic blocks.
The key is the dynamic block type name, as a string. The value
is the function used to insert the dynamic block.
Use `org-dynamic-block-define' to populate it.")