AgentSkillsCN

markdown

Markdown 风格指南。在编写或编辑 Markdown 文件时使用,以确保格式一致,采用 Setext 标题、短横线项目符号以及纯文本的可读性。

SKILL.md
--- frontmatter
name: markdown
description: Markdown style guide. Use when writing or editing markdown files to ensure consistent formatting with Setext headings, hyphen bullets, and plain-text readability.

Markdown Style

Format for plain-text readability. Style preferences only; assumes Markdown knowledge.

Headings

Use Setext-style for level 1 and 2 headings:

markdown
Document Title
==============

Section Heading
---------------

Use ATX-style for level 3 and deeper:

markdown
### Subsection


#### Sub-subsection

Lists

Use a hyphen ("-") for bullet list markers.

Emphasis

Bold with asterisks (e.g., **bold**). Italicize with underscores (e.g., _italic_).

Code


All instances of code or shell session examples should go into fenced code blocks.

typescript
console.log('Hello world!');
sh-session
git diff

Spacing

  • One blank line between block elements (e.g., headings, paragraphs, block quotations, lists, headings, rules, code blocks, etc.).
  • No trailing whitespace.
  • Single newline at end of file.