woocommerce-markdownlisted
Install: claude install-skill aiskillstore/marketplace
# WooCommerce Markdown Guidelines
This skill provides guidance for creating and editing markdown files in the WooCommerce project.
## Critical Rules
1. **Always lint after changes** - Run `markdownlint --fix` then `markdownlint` to verify
2. **Run from repository root** - Ensures `.markdownlint.json` config is loaded
3. **Use UTF-8 encoding** - Especially for directory trees and special characters
4. **Follow WooCommerce markdown standards** - See configuration rules below
## WooCommerce Markdown Configuration
The project uses markdownlint with these specific rules (from `.markdownlint.json`):
### Enabled Rules
- **MD003**: Heading style must be ATX (`# Heading` not `Heading\n===`)
- **MD007**: Unordered list indentation must be 4 spaces
- **MD013**: Line length limit disabled (set to 9999)
- **MD024**: Multiple headings with same content allowed (only check siblings)
- **MD031**: Fenced code blocks must be surrounded by blank lines
- **MD032**: Lists must be surrounded by blank lines
- **MD033**: HTML allowed for `<video>` elements only
- **MD036**: Emphasis (bold/italic) should not be used as headings - use proper heading tags
- **MD040**: Fenced code blocks should specify language
- **MD047**: Files must end with a single newline
### Disabled Rules
- **no-hard-tabs**: Tabs are allowed
- **whitespace**: Trailing whitespace rules disabled
## Markdown Writing Guidelines
### Headings
```markdown
# Main Title (H1) - Only one per file
## Section (H2)
### Subsection