obsidian-vault

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Obsidian 仓库

Obsidian Vault

仓库位置

Vault Location

/mnt/d/Obsidian Vault/AI Research/
大部分扁平在根级别。
/mnt/d/Obsidian Vault/AI Research/
Mostly flat at the root level.

命名约定

Naming Conventions

  • 索引笔记:聚合相关主题(例如,
    Ralph Wiggum Index.md
    Skills Index.md
    RAG Index.md
  • 所有笔记名称使用标题大小写
  • 不使用文件夹进行组织 - 改用链接和索引笔记
  • Index Notes: Aggregate related topics (e.g.,
    Ralph Wiggum Index.md
    ,
    Skills Index.md
    ,
    RAG Index.md
    )
  • All note titles use Title Case
  • Do not use folders for organization - use links and index notes instead

链接

Links

  • 使用 Obsidian
    [[wikilinks]]
    语法:
    [[Note Title]]
  • 笔记在底部链接到依赖/相关笔记
  • 索引笔记只是
    [[wikilinks]]
    列表
  • Use Obsidian
    [[wikilinks]]
    syntax:
    [[Note Title]]
  • Notes link to dependent/related notes at the bottom
  • Index notes are just lists of
    [[wikilinks]]

工作流程

Workflows

搜索笔记

Search for Notes

bash
undefined
bash
undefined

按文件名搜索

按文件名搜索

find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"
find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"

按内容搜索

按内容搜索

grep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"

或直接对仓库路径使用 Grep/Glob 工具。
grep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"

Or use Grep/Glob tools directly on the vault path.

创建新笔记

Create New Notes

  1. 文件名使用标题大小写
  2. 将内容编写为学习单元(根据仓库规则)
  3. 在底部添加
    [[wikilinks]]
    到相关笔记
  4. 如果是编号序列的一部分,使用分层编号方案
  1. Use Title Case for the filename
  2. Write content as learning units (per vault rules)
  3. Add
    [[wikilinks]]
    to related notes at the bottom
  4. If part of a numbered sequence, use a hierarchical numbering scheme

查找相关笔记

Find Related Notes

在整个仓库中搜索
[[Note Title]]
以查找反向链接:
bash
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
Search the entire vault for
[[Note Title]]
to find backlinks:
bash
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"

查找索引笔记

Find Index Notes

bash
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
bash
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"