28 lines
474 B
Org Mode
Executable File
28 lines
474 B
Org Mode
Executable File
* Main Title
|
|
** Introduction
|
|
Some intro text.
|
|
|
|
#+NAME: intro-para
|
|
This is a named paragraph that will be replaced.
|
|
It continues until the first blank line.
|
|
|
|
** Data
|
|
#+NAME: mytable
|
|
| Item | Value |
|
|
|------+-------|
|
|
| A | 1 |
|
|
| B | 2 |
|
|
|
|
** Code
|
|
#+NAME: code-snippet
|
|
#+BEGIN_SRC python
|
|
print("hello world")
|
|
#+END_SRC
|
|
|
|
** My Section
|
|
This section body will be replaced.
|
|
It ends at the next heading of level ** or *.
|
|
|
|
** Another Section
|
|
Content of another section.
|