结合时间线来管理闪念笔记

添加 block ID 产生更精准的链接

为了在 weekly note 中更精准地指向 daily note 的闪念笔记行(原来只链接指向标题下),改为通过自定义 block ID 来实现

效果

QuickAdd capture format

- ==⏰{{DATE:HH:mm}}== {{MVALUE}} ^FL-{{DATE:HHmmss}}

weekly note 中 Dataview 代码微调

week: 2022-W42
---
> <<[[2022-W41]]>>|<<[[2022-W43]]>>
## Fleeting notes of `=this.week`
```dataview
table 
	dateformat(date, "ccc") as 星期, 
	L.text as 闪念笔记, 
	L.link as 链接
from "Daily notes"
flatten file.lists as L
where 
	!L.parent and
	meta(L.section).subpath = "Fleeting notes" and
	dateformat(date(file.link), "yyyy-'W'WW") = this.week
```
4 个赞