Skip to content

Latest commit

 

History

History
73 lines (55 loc) · 1.16 KB

File metadata and controls

73 lines (55 loc) · 1.16 KB
alias Inbox MOC
created 2023-09-05
isoCreated 2023-09-05 13:06:29 +0800
modified
tags
map

up: [[00_Home MOC]]

Fleeting - Only #input

dv.table(
	["Title", "Created"],
	dv.pages("#input")
	.where(p => p.tags && p.tags.length === 1 && p.tags.includes("input"))
	.map(p => [
	`[[${p.file.name}]]`,
	dv.date(p.file.ctime)
	])
	.slice(0, 15)
)

Todo And Overdue

table without id
file.link as "Title",
file.etags as "Tags",

ordinal as "Priority", file.ctime as "Created date"
from #input
where !contains(tags, "status/backlog") and !contains(tags, "status/done")
sort ordinal desc, file.ctime desc 
limit 5

Backlog

table created
from #input
where contains(tags, "status/backlog")
sort created desc

All

table created
from #input

sort file.ctime desc
limit 10

Summary

This where to put fleeting / Input notes that need to be processed. It may contain thoughts I've written down, something a friend has recommended I look up, or highlights from my reading. Processing the contents of the inbox will be a regular ritual in managing your Zettelkasten

Related

  • [[Fleeting Note]]