Variable: embark-org--types
embark-org--types is a variable defined in embark-org.el.
Value
(babel-call footnote-definition footnote-reference inline-src-block item link plain-list src-block table table-cell timestamp)
Documentation
Supported Org object and element types.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark-org.el
;;; Basic target finder for Org
;; There are very many org element and objects types, we'll only
;; recognize those for which there are specific actions we can put in
;; a keymap, or even if there aren't any specific actions, if it's
;; important to be able to kill, delete or duplicate (embark-insert)
;; them conveniently. I'll start conservatively and we can add more
;; later
(defconst embark-org--types
'(
babel-call
;; bold
;; center-block
;; citation
;; citation-reference
;; clock
;; code
;; comment
;; comment-block
;; diary-sexp
;; drawer
;; dynamic-block
;; entity
;; example-block
;; export-block
;; export-snippet
;; fixed-width
footnote-definition
footnote-reference
;; headline ; the bounds include the entire subtree!
;; horizontal-rule
;; inline-babel-call
inline-src-block
;; inlinetask
;; italic
item
;; keyword
;; latex-environment
;; latex-fragment
;; line-break
link
;; macro
;; node-property
;; paragraph ; the existing general support seems fine
plain-list
;; planning
;; property-drawer
;; quote-block
;; radio-target
;; section
;; special-block
src-block
;; statistics-cookie
;; strike-through
;; subscript
;; superscript
table ; supported via a specific target finder
table-cell
;; table-row ; we'll put row & column actions in the cell map
;; target ; I think there are no useful actions for radio targets
timestamp
;; underline
;; verbatim
;; verse-block
)
"Supported Org object and element types.")