Loading...
Loading...
Documentation and content creation standards for Markdown files. Use when writing, reviewing, or formatting Markdown documentation, README files, or technical content.
npx skill4agent add rory-data/copilot markdown-conventions######## Main Section (H2)
Content here...
### Subsection (H3)
More specific content...
### Another Subsection (H3)
Related content...-1.- First item
- Second item
- Nested item
- Another nested item
- Third item
1. First step
2. Second step
3. Third step```python
def hello_world():
print("Hello, World!")
```
```bash
npm install package-name
```Good: See the [API documentation](./api-docs.md) for details.
Bad: Click [here](./api-docs.md) for docs.
Good: Read about [dependency injection patterns](https://example.com/di)
Bad: More info [here](https://example.com/di)
|| Feature | Status | Priority |
| ------- | ------ | -------- |
| API | Done | High |
| UI | WIP | Medium |
| Tests | Todo | High |---
title: Document Title
description: Brief description of content
author: Team Name
date: 2026-01-01
tags: [documentation, guide]
---Use _italics_ for emphasis.
Use **bold** for strong emphasis.
Use `code` for inline code or technical terms.> Important note or quote
> Can span multiple linesUse three or more hyphens, asterisks, or underscores:
---
Content after rule- [x] Completed task
- [ ] Pending task
- [ ] Another pending task# Project Name
Brief description of the project.
## Features
- Feature 1
- Feature 2
## Installation
\`\`\`bash
installation commands
\`\`\`
## Usage
Basic usage examples.
## Contributing
Guidelines for contributors.
## License
License information.# Document Title
## Overview
High-level summary.
## Prerequisites
Requirements before proceeding.
## Step-by-Step Guide
### Step 1: Initial Setup
Detailed instructions.
### Step 2: Configuration
Configuration details.
## Troubleshooting
Common issues and solutions.
## References
Links to related resources.# Using H1 in content (H1 is for title only)
Click [here](link) for more info.
Code without language:
\`\`\`
code here
\`\`\`
 # No alt text## Using H2 for Main Sections
See the [detailed API documentation](link) for more information.
\`\`\`python
def example():
return "with language specified"
\`\`\`
