Headings

* Heading 1
** Heading 2
*** Heading 3

Text formatting

SyntaxResult
*bold*bold
/italic/italic
===code===code
~verbatim~verbatim
+strikethrough+strikethrough
_underline_underline

Links

[[https://example.com][Link text]]
[[file:other-file.org][Local file]]
[[#heading-id][Internal link]]

Lists

- Unordered item
  - Nested item
- Another item

1. Ordered item
2. Another

- [ ] Todo item
- [X] Done item

Tables

| Column 1 | Column 2 | Column 3 |
|----------+----------+----------|
| cell     | cell     | cell     |

Tip: TAB inside a table auto-aligns columns.

Source blocks

#+begin_src python
print("hello")
#+end_src

Common languages: python, bash, js, nu, org, sql, rust

keywords

* TODO Task to do
* DONE Completed task
* WAIT Waiting on something

Properties and metadata

#+title: Document Title
#+date: 2026-05-09
#+author: Name
#+filetags: :tag1:tag2:

* Heading
:PROPERTIES:
:ID: unique-id
:END:

Timestamps and dates

<2026-05-09 Fri>          active timestamp
[2026-05-09 Fri]          inactive timestamp
<2026-05-09 Fri 10:00>    with time

Drawers

:LOGBOOK:
- Note taken on [2026-05-09 Fri]
:END:

Export / comments

#+begin_comment
This won't export.
#+end_comment

# This line is a comment

Horizontal rule

-----