25 lines
438 B
Org Mode
25 lines
438 B
Org Mode
#+title: Example Note
|
|
#+filetags: :test:example:
|
|
#+date: [2024-02-21]
|
|
#+hugo_lastmod: [2024-02-22]
|
|
#+hugo_section: notes
|
|
|
|
* Introduction
|
|
|
|
This is an example org note with some features:
|
|
|
|
- A link to [[roam:Another Note]]
|
|
- A citation cite:smith2020
|
|
- Some *bold* and /italic/ text
|
|
|
|
* Code Example
|
|
|
|
#+begin_src python
|
|
def hello():
|
|
print("Hello, world!")
|
|
#+end_src
|
|
|
|
* Conclusion
|
|
|
|
See also [[id:abc-123][Related Concept]] for more info.
|