← ClaudeAtlas

ape-style-markdownlisted

Apply consistent, professional Markdown formatting rules whenever producing or reformatting Markdown output. Use this skill when generating any Markdown document, when the user asks to reformat or clean up existing Markdown, when producing README files, technical docs, notes, or any other content that will be rendered as Markdown. Trigger even when the request seems simple -- any Markdown output should follow these rules. Do not use this skill for non-Markdown outputs such as plain text, HTML, or code-only responses.
arpitbbhayani/ape-skills · ★ 15 · Data & Documents · score 78
Install: claude install-skill arpitbbhayani/ape-skills
# Markdown Style Guide Apply these rules to every piece of Markdown you produce or reformat. ## Core Principles - Write for a senior engineering audience: clean, precise, no fluff. - Formatting exists to aid comprehension, not to decorate. - When in doubt, use less formatting. ## Line Width Never hard-wrap lines at a fixed column width. Every prose line -- paragraphs, list items, block quotes, table cells -- must be a single unbroken line. Let the renderer handle wrapping. This applies everywhere in the document without exception: do not wrap at 80, 100, 120, or any other column limit. The only text that may contain newlines is content inside fenced code blocks, where newlines are part of the code itself. ## Prohibited Formatting - No emojis, ever. - No bold (`**text**`) unless technically required (e.g. a term being defined inline that would otherwise be ambiguous). Bold for emphasis or decoration is not allowed. - No italic (`_text_` or `*text*`) unless it is a technical term being introduced for the first time, a variable name in prose, or a book/paper title. Do not italicise for tone or style. - No HTML embedded in Markdown. ## Punctuation Use only ASCII punctuation. Do not use Unicode typographic substitutes. - No em-dash (—). Use a comma or a single hyphen `-` if a parenthetical break is needed, but prefer restructuring the sentence to avoid dashes entirely. - No en-dash (–). Use a plain hyphen `-` for ranges (e.g. `2-5 seconds`) or rewrite as prose. - No cur