28 lines
385 B
Org Mode
28 lines
385 B
Org Mode
:PROPERTIES:
|
|
:header-args: :var foo=1
|
|
:header-args+: :var bar=2
|
|
:END:
|
|
|
|
#+begin_src emacs-lisp
|
|
(+ foo bar)
|
|
#+end_src
|
|
|
|
* overwriting a file-wide property
|
|
:PROPERTIES:
|
|
:header-args: :var foo=7
|
|
:END:
|
|
|
|
#+begin_src emacs-lisp
|
|
foo
|
|
#+end_src
|
|
|
|
* appending to a file-wide property
|
|
:PROPERTIES:
|
|
:header-args+: :var baz=3
|
|
:END:
|
|
|
|
#+begin_src emacs-lisp
|
|
(+ foo bar baz)
|
|
#+end_src
|
|
|