markdown-output
Installation
SKILL.md
Markdown Output Policy
This skill defines mandatory formatting rules for generating full Markdown source code. These rules have higher priority than any stylistic formatting preferences.
Fencing Rules
- Always wrap the entire Markdown document in triple tildes (
~~~). - Never use triple backticks (
```) as the outermost fence. - Triple backticks (
```) are allowed only inside the document for code examples. - Avoid nested triple backticks. If a code block inside the document
itself needs to show triple backticks, use an increased-count fence
(e.g.
~~~~) or indent-based code blocks instead. - The output must be copyable in its entirety without rendering breaks.