不规范笔记
主卡片笔记
主卡片笔记带标签且位置固定
主卡片目录下不可放其他笔记,且主卡片笔记需要带标签 ZK/MainCard
table without id
 file.link as 笔记,
 title as 标题,
 tags
from "05-ZettelNotes"
where !contains(tags, "ZK/MainCard" )主卡片放在指定目录下
table without id
 file.link as 笔记,
 title as 标题,
 tags
from #ZK/MainCard
where !startswith(file.path, "05-ZettelNotes") and !startswith(file.path, "Z-extras")- 补充 refnote 和 fleetnote 目录位置 [completion:: 2025-08-04]
主卡片笔记标题格式
table without id
 file.link as 笔记,
 title as 标题,
 tags
from "05-ZettelNotes"
where !regexmatch("[\d\w]+(\.[\d\w]+)+", file.name )待处理笔记
带 CODE/Capture 标签的笔记需要进一步处理
table without id
  file.link as 笔记,
  title as 标题,
  tags
where
  contains(tags, "CODE/Capture") and !startswith(file.folder, "03-Resources/B-灵感/") and !startswith(file.folder, "Z-extras")
limit 50