Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub lazygophers/ccplugin --plugin markdownHow this skill is triggered — by the user, by Claude, or both
Slash command
/markdown:coresonnetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- **Skills(markdown:mermaid)** - Mermaid 图表(流程图、序列图、类图、ER 图)
Provides reference for core Markdown syntax: headings, text formatting, lists, links, images, code blocks, blockquotes. Use when writing or editing Markdown files.
Guides markdown linting with markdownlint-cli2: run checks, fix MD0XX errors, configure .markdownlint-cli2.jsonc rules/ignores, set up VS Code extension and GitHub Actions. Supports GFM/CommonMark for validation and workflows.
Enforces diff-friendly markdown conventions for prose: 80-char hybrid wrapping at sentence/clause boundaries, blank lines around ATX headings, list spacing, and reference links. For generating/editing/reviewing .md docs.
Share bugs, ideas, or general feedback.
| AI 可能的理性化解释 | 实际应该检查的内容 |
|---|---|
| "代码块不需要语言标记" | ✅ 是否所有代码块都指定了语言? |
| "标题跳级没关系" | ✅ 是否标题层级连续(# → ## → ###)? |
| "链接文字随便写" | ✅ 链接文字是否描述了目标内容? |
| "段落长一点更完整" | ✅ 每段是否控制在 5 句以内? |
| "不需要 alt 文本" | ✅ 所有图片是否有 alt 描述? |
Markdown 文档编写追求清晰、简洁、结构化。
# 文档标题
简介/摘要
## 主要章节
### 子章节
#### 详细内容
## 参考资料
## 版本信息
# 一级标题(文档标题,仅一个)
## 二级标题(主要章节)
### 三级标题(子章节)
#### 四级标题(详细内容)
```python
def hello():
print("Hello, World!")
```
[链接描述](https://example.com)

| 列1 | 列2 | 列3 |
| ---- | ---- | ---- |
| 内容 | 内容 | 内容 |