Loading...
Loading...
Guidelines for creating and modifying markdown files. Use when writing documentation, README files, or any markdown content.
npx skill4agent add huminglong/my_claude_skills markdown-writingmarkdownlint --fixmarkdownlint.markdownlint.json.markdownlint.json# HeadingHeading\n===<video># Main Title (H1) - Only one per file
## Section (H2)
### Subsection (H3)
#### Minor Section (H4)#- Item one
- Item two
- Nested item (4 spaces)
- Another nested item
- Item three1. First item
2. Second item
3. Third item-*+```bash
pnpm test:php:env
```
```php
public function process_order( int $order_id ) {
// code here
}
```
```javascript
const result = calculateTotal(items);
```bashphpjavascriptjstypescripttsjsonsqlmarkdownmd```Use the `process_order()` method to handle orders.
The `$order_id` parameter must be an integer.[Link text](https://example.com)
[Internal link](../path/to/file.md)
[Link with title](https://example.com "Optional title")| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Value 1 | Value 2 | Value 3 |
| Value 4 | Value 5 | Value 6 ||:---:---:---:src/
├── Internal/
│ ├── Admin/
│ │ └── Controller.php
│ └── Utils/
│ └── Helper.php
└── External/
└── API.php+--|--**Bold text** for strong emphasis
*Italic text* for regular emphasis
***Bold and italic*** for very strong emphasismarkdownlint --fix path/to/file.mdmarkdownlint path/to/file.md- Item
- Nested (only 2 spaces)- Item
- Nested (4 spaces)Some text
```bash
command
```
More textSome text
```bash
command
```
More textSome text
- List itemSome text
- List item**Example: Using bold as a heading**
Some content here#### Example: Using a proper heading
Some content here```
code here
``````bash
code here
```tr -d '\000-\037' < file.md > file.clean.md && mv file.clean.md file.md
file file.md # Verify shows "UTF-8 text"# Always run from root
cd /path/to/woocommerce
markdownlint path/to/file.md
# NOT like this
markdownlint /absolute/path/to/file.mdmarkdownlint --fixwoocommerce-dev-cycle