Merge branch 'maint'
[org-mode.git] / testing / examples / property-inheritance.org
blob6979de595febd2d4428c1d43133f449cc0b2b8d8
1 #+property: header-args :var  foo=1
2 #+property: header-args+ :var bar=2
4 #+begin_src emacs-lisp
5   (+ foo bar)
6 #+end_src
8 * overwriting a file-wide property
9   :PROPERTIES:
10   :header-args: :var foo=7
11   :END:
13 #+begin_src emacs-lisp
14   foo
15 #+end_src
17 * appending to a file-wide property
18   :PROPERTIES:
19   :header-args+: :var baz=3
20   :END:
22 #+begin_src emacs-lisp
23   (+ foo bar baz)
24 #+end_src