File: normal.org

package info (click to toggle)
org-mode 9.1.14%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,884 kB
  • sloc: lisp: 142,310; xml: 1,055; makefile: 197; ansic: 14; sh: 5
file content (28 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#+TITLE: Example file
#+OPTIONS: num:nil ^:nil
#+STARTUP: hideblocks

This is an example file for use by the Org mode tests.

* top
** code block
   :PROPERTIES:
   :header-args: :tangle yes
   :CUSTOM_ID: code-block-section
   :END:
Here are a couple of code blocks.

#+begin_src emacs-lisp :tangle no
  ;; 94839181-184f-4ff4-a72f-94214df6f5ba
  (message "I am code")
#+end_src
* accumulating properties in drawers
 :PROPERTIES:
 :header-args+: :var bar=2
 :header-args: :var foo=1
 :ID:       75282ba2-f77a-4309-a970-e87c149fe125
 :END:

#+begin_src emacs-lisp :results silent
 (list bar foo)
#+end_src