Variable: org-element-keyword-translation-alist

org-element-keyword-translation-alist is a variable defined in org-element.el.gz.

Value

(("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME")
 ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
 ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))

Documentation

Alist of usual translations for keywords.

The key is the old name and the value the new one. The property holding their value will be named after the translated name.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element-keyword-translation-alist
  '(("DATA" . "NAME")  ("LABEL" . "NAME") ("RESNAME" . "NAME")
    ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
    ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))
  "Alist of usual translations for keywords.
The key is the old name and the value the new one.  The property
holding their value will be named after the translated name.")