Variable: org-global-properties
org-global-properties is a customizable variable defined in org.el.gz.
Value
nil
Documentation
List of property/value pairs that can be inherited by any entry.
This list will be combined with the constant org-global-properties-fixed.
The entries in this list are cons cells where the car is a property name and cdr is a string with the value.
Buffer local properties are added either by a document property drawer
:PROPERTIES:
:NAME: VALUE
:END:
or by adding lines like
#+PROPERTY: NAME VALUE
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-global-properties nil
"List of property/value pairs that can be inherited by any entry.
This list will be combined with the constant `org-global-properties-fixed'.
The entries in this list are cons cells where the car is a property
name and cdr is a string with the value.
Buffer local properties are added either by a document property drawer
:PROPERTIES:
:NAME: VALUE
:END:
or by adding lines like
#+PROPERTY: NAME VALUE"
:group 'org-properties
:type '(repeat
(cons (string :tag "Property")
(string :tag "Value"))))