markdown
Installation
SKILL.md
Markdown Formatting Rules
When creating or modifying markdown documents, you MUST adhere strictly to the following rules:
- Minimal bold: never use bold in text unless absolutely necessary.
- No numbered headers: do not use numbered headers (e.g., use
## Headerinstead of## 1. Header). - Lowercase after colon in lists: in list items, the first letter immediately after a colon must be lowercase (e.g., "- key: value"). Capitalization in the rest of the sentence remains unchanged.
- Bad: "- Foo: Bar"
- Good: "- Foo: bar"
- List spacing: always leave a blank line above and below a list, except for nested lists.
- Post-processing: run
make format-docsafter any changes to files in thedocs/folder.