Skip to content

Commit 8961c67

Browse files
committed
Add Create Todo Items In Logseq as a Workflow TIL
1 parent 4ff24a7 commit 8961c67

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pairing with smart people at Hashrocket.
1010

1111
For a steady stream of TILs, [sign up for my newsletter](https://crafty-builder-6996.ck.page/e169c61186).
1212

13-
_1604 TILs and counting..._
13+
_1605 TILs and counting..._
1414

1515
See some of the other learning resources I work on:
1616
- [Ruby Operator Lookup](https://www.visualmode.dev/ruby-operators)
@@ -1847,6 +1847,7 @@ If you've learned something here, support my efforts writing daily TILs by
18471847
- [Convert An ePub Document To PDF On Mac](workflow/convert-an-epub-document-to-pdf-on-mac.md)
18481848
- [Create A Local Sanity Dataset Backup](workflow/create-a-local-sanity-dataset-backup.md)
18491849
- [Create A Public URL For A Local Server](workflow/create-a-public-url-for-a-local-server.md)
1850+
- [Create Todo Items In Logseq](workflow/create-todo-items-in-logseq.md)
18501851
- [Enable Dev Tools For Safari](workflow/enable-dev-tools-for-safari.md)
18511852
- [Forward Stripe Events To Local Server](workflow/forward-stripe-events-to-local-server.md)
18521853
- [Get URL For GitHub User Profile Photo](workflow/get-url-for-github-user-profile-photo.md)
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Create Todo Items In Logseq
2+
3+
Having used GitHub flavored markdown and tools like Roam Research and Obsidian,
4+
I'm used to being able to add interactive todo items to a document with square
5+
brackets, like so:
6+
7+
```
8+
- [ ] Do this
9+
- [ ] Do that
10+
```
11+
12+
This exact syntax doesn't work in Logseq, but I've figured out two ways of
13+
adding todo items.
14+
15+
First, you can access the todo syntax with a forward slash command. Type `/`
16+
and then start typing `TODO`. It will show up as a top result. Hit enter and
17+
you'll have a fresh todo item that you can add a description to.
18+
19+
Second, as the above hints at, we can get right to the todo syntax by typing
20+
one of `TODO`, `NOW`, or `LATER` in all caps followed by a description. For
21+
example:
22+
23+
```
24+
TODO Send out invoices
25+
NOW Reply to those emails
26+
LATER Schedule that meeting
27+
```
28+
29+
These will render as checkable boxes marked as either `TODO`, `NOW`, or
30+
`LATER`, until they are checked off.
31+
32+
You can also search for blocks that match one of these three categories.

0 commit comments

Comments
 (0)