feat(vault): track PARA layer (Categories/References/Notes/Daily/Clippings/Tags/Attachments/Presentations)
- Add 8 PARA directories to .gitignore whitelist (234 files) - Completes dual-layer sync: LLM Wiki layer + PARA personal knowledge layer - markdown_output/ remains excluded (transit zone)
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
---
|
||||
tags:
|
||||
- people/types
|
||||
icon: 👤
|
||||
color: "#3498db"
|
||||
created: 2026-04-14
|
||||
---
|
||||
|
||||
# PersonType
|
||||
|
||||
> **一句话定义**:人物笔记的主类型,所有人物笔记的基础类型。
|
||||
|
||||
## 基本信息
|
||||
|
||||
| 属性 | 值 |
|
||||
|------|-----|
|
||||
| icon | 👤 |
|
||||
| color | #3498db |
|
||||
| 层级 | 主类型 |
|
||||
|
||||
## 适用范围
|
||||
|
||||
- 所有人物笔记(通用类型)
|
||||
- 未特定为作者、演员、导演等其他角色的人物
|
||||
|
||||
## 子类型
|
||||
|
||||
人物笔记可以包含多个type值,以支持多角色:
|
||||
|
||||
| 子类型 | icon | color | 使用场景 |
|
||||
|--------|------|-------|----------|
|
||||
| `[[Author]]` | ✍️ | #9b59b6 | 作者、作家、学者、记者 |
|
||||
| `[[Actors]]` | 🎭 | #e67e22 | 演员、艺人 |
|
||||
| `[[Director]]` | 🎬 | #e74c3c | 导演、编剧 |
|
||||
|
||||
## 与其他类型的关系
|
||||
|
||||
- **主类型**:所有人物笔记必须包含 `[[People]]` 作为主类型
|
||||
- **子类型**:根据人物角色添加一个或多个子类型
|
||||
- **多角色支持**:一人可以有多种角色(如作者+导演)
|
||||
|
||||
## Base 集成
|
||||
|
||||
- **People.base**:使用 `type.contains(link("People"))` 过滤所有人物笔记
|
||||
- **Map.base**(如需地图视图):formula继承icon/color
|
||||
|
||||
## 示例
|
||||
|
||||
```yaml
|
||||
# 通用人物(无特定角色)
|
||||
type:
|
||||
- "People"
|
||||
|
||||
# 作者
|
||||
type:
|
||||
- "People"
|
||||
- "Author"
|
||||
|
||||
# 演员兼导演
|
||||
type:
|
||||
- "People"
|
||||
- "Actors"
|
||||
- "Director"
|
||||
```
|
||||
|
||||
## Tags
|
||||
|
||||
person笔记应使用以下tag前缀:
|
||||
|
||||
| Tag 前缀 | 说明 | 示例 |
|
||||
|----------|------|------|
|
||||
| `person/author` | 作者、作家 | person/author |
|
||||
| `person/actor` | 演员、艺人 | person/actor |
|
||||
| `person/director` | 导演 | person/director |
|
||||
| `person/historical` | 历史人物 | person/historical |
|
||||
| `person/politics` | 政治人物 | person/politics |
|
||||
| `person/scholar` | 学者 | person/scholar |
|
||||
| `person/military` | 军事人物 | person/military |
|
||||
| `person/education` | 教育界人士 | person/education |
|
||||
Reference in New Issue
Block a user