원클릭으로
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"'