Org mode language preview
1. A basic headline
TODO keyword, priority, tags, and a property drawer
horizon-dark
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
atom-one-dark
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
github-dark
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
dracula
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
nord
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
github
* TODO Write quarterly report [#A] :work:report:
SCHEDULED: <2026-09-10 Thu>
:PROPERTIES:
:CREATED: [2026-09-06 Sun]
:END:
Check the [[https://example.com][dashboard]] for *important* numbers.
- first item
- [X] second item done
1. ordered item
# a comment line
2. Document metadata
#+TITLE and friends, plus emphasis markup
horizon-dark
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
atom-one-dark
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
github-dark
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
dracula
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
nord
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
github
#+TITLE: My Project Notes
#+AUTHOR: Ada Lovelace
#+OPTIONS: toc:nil
/italic/, _underline_, =verbatim=, ~code~, and +strikethrough+ all work.
3. A source block
#+BEGIN_SRC / #+END_SRC and a table
horizon-dark
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |
atom-one-dark
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |
github-dark
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |
dracula
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |
nord
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |
github
#+BEGIN_SRC javascript
function greet(name) {
return `Hello, ${name}!`;
}
#+END_SRC
| Name | Score |
| Alice | 92 |
| Bob | 88 |