1.3 KiB
1.3 KiB
| title | kanban-plugin |
|---|---|
| Content Pipeline (Dataview Kanban) | basic |
灵感/素材 (∞)
LIST
FROM "00-inbox"
WHERE status = "inbox" OR status = null
SORT file.ctime DESC
选题 (WIP: 3)
LIST
FROM "01-topics"
WHERE status = "topic"
SORT file.ctime DESC
写作 (WIP: 3)
LIST
FROM "02-drafts"
WHERE status = "draft"
SORT file.ctime DESC
配图/格式化 (WIP: 2)
LIST
FROM "02-drafts" OR "05-assets"
WHERE status = "formatting" OR status = "visual"
SORT file.ctime DESC
审核 (WIP: 2)
LIST
FROM "03-review"
WHERE status = "review"
SORT file.ctime DESC
发布 (WIP: 2)
LIST
FROM "03-review"
WHERE status = "publishing"
SORT file.ctime DESC
已完成
LIST
FROM "04-published"
WHERE status = "published"
SORT published_at DESC
阻塞/等待
LIST
FROM ""
WHERE status = "blocked"
SORT file.ctime DESC
修订中
LIST
FROM ""
WHERE status = "revision"
SORT file.ctime DESC
[!info] 状态枚举
inbox→topic→draft→formatting→review→publishing→published特殊状态:
revisionblockedarchived废弃目录:
06-archived/
%% kanban:settings
{"kanban-plugin":"basic","lane-width":280,"show-checkboxes":false}
%%