一键导入
content-formatting
Ensure consistent content formatting and avoid common issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Ensure consistent content formatting and avoid common issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add icons to navigation items using frontmatter or .navigation.md folder files.
Configure navigation ordering for Obsidian vaults using frontmatter, .navigation.md files, or numeric filename prefixes.
Add custom Vue components to a vault for use in markdown content or app-level overrides.
Create documentation for the Lithos repository itself. Use this skill when writing guides, feature docs, or API references in the `vault/` directory.
Create feature documentation pages in vault/2.features/. Use when documenting a specific Lithos capability like graph view, bases, or daily notes.
Create or edit the Lithos landing page (vault/index.md). Use when modifying the homepage hero, feature cards, or call-to-action sections.
| name | content-formatting |
| description | Ensure consistent content formatting and avoid common issues |
This skill documents Lithos formatting conventions to avoid rendering issues.
title: property❌ Wrong (causes double title):
---
title: My Page
---
# My Page
Content starts here...
✅ Correct (single title from frontmatter):
---
title: My Page
---
Content starts immediately after frontmatter...
Every page should have at minimum:
---
title: Required Title
description: Optional but recommended for SEO
---
For section headers within your content, start with ## H2:
---
title: Guide Title
---
Introduction paragraph...
## First Section
Content of first section...
### Subsection
More detailed content...
Escape special characters in YAML:
title: "My: Title"title: 'He said "hello"'