35 lines
1.0 KiB
Org Mode
35 lines
1.0 KiB
Org Mode
Okay the syntax for these files might take some time to get used to. But here is a quick summary (message me in case anything doesn't make sense).
|
|
|
|
Headings / outlines are like: =* H1=, =** H2=, =*** H3=
|
|
|
|
So you can create a new header like:
|
|
|
|
*** Example
|
|
|
|
This is at level three (3 asterisks):
|
|
|
|
- Emphasis: =*bold*= =/italic/= =_underline_= =+strike+= =~code~= ==verbatim==
|
|
|
|
- Checkboxes: =- [ ] todo=, =- [X] done=, =- [-] partial=
|
|
|
|
- TODO workflow: =* TODO Write post= → DONE; define states: =#+TODO: TODO DOING | DONE=
|
|
|
|
- Timestamps: active =<2025-11-02 Sun 14:00>= ; inactive =[2025-11-02]=
|
|
|
|
- Links: =[[https://example.com][desc]]=
|
|
|
|
For a file tag, you can create a new file under the folder *lima*, make sure it has the ~.org~ extension. Then you simply can link it:
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
[[file:file_name.org][Alias]]
|
|
|
|
#+end_src
|
|
|
|
It will look like this:
|
|
|
|
[[file:file_name.org][Alias]]
|
|
|
|
This should be a quick start (once you get used to it, I'll update it with macros :))
|
|
|
|
ADD AS MANY FILES AS YOU WANT (just don't forget to link them!) |