Hi List, comparing this
,---------------------------------------------------------------------------- | (defconst org-element-all-elements | '(babel-call center-block clock comment comment-block diary-sexp drawer | dynamic-block example-block export-block fixed-width | footnote-definition headline horizontal-rule inlinetask item | keyword latex-environment node-property paragraph plain-list | planning property-drawer quote-block quote-section section | special-block src-block table table-row verse-block) | "Complete list of element types.") `---------------------------------------------------------------------------- to this ,------------------------------------------------------------------ | (defconst org-element-secondary-value-alist | '((headline . :title) | (inlinetask . :title) | (item . :tag) | (footnote-reference . :inline-definition)) | "Alist between element types and location of secondary value.") `------------------------------------------------------------------ reveals that 'footnote-reference' is missing in the first list. -- cheers, Thorsten