Expert guidance on Markdown syntax, flavors (GFM, CommonMark), and advanced features (tables, diagrams, frontmatter). Use when writing or formatting Markdown documents.
Use this skill to create, format, and debug Markdown documents. It covers GitHub Flavored Markdown (GFM), CommonMark, and Pandoc, along with tools for linting and formatting.
# Heading) instead of Setext (Heading\n===). Limit to 3 levels.- for unordered lists.```python).prettier for automatic formatting.markdownlint to catch structure and style issues.Different platforms use different Markdown "flavors".
references/flavors.md for specific syntax comparisons.Embed diagrams directly in Markdown.
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
| Header 1 | Header 2 |
| :------- | :------- |
| Cell 1 | Cell 2 |
Use YAML frontmatter for metadata at the top of the file.
---