docs(coding-agent): fix nested code fences in skills docs

This commit is contained in:
Armin Ronacher
2026-04-15 18:40:37 +02:00
parent 17585b7f0b
commit 9c1e6ef6d3

View File

@@ -106,7 +106,7 @@ my-skill/
### SKILL.md Format ### SKILL.md Format
```markdown ````markdown
--- ---
name: my-skill name: my-skill
description: What this skill does and when to use it. Be specific. description: What this skill does and when to use it. Be specific.
@@ -117,16 +117,16 @@ description: What this skill does and when to use it. Be specific.
## Setup ## Setup
Run once before first use: Run once before first use:
\`\`\`bash ```bash
cd /path/to/skill && npm install cd /path/to/skill && npm install
\`\`\` ```
## Usage ## Usage
\`\`\`bash ```bash
./scripts/process.sh <input> ./scripts/process.sh <input>
\`\`\`
``` ```
````
Use relative paths from the skill directory: Use relative paths from the skill directory:
@@ -198,7 +198,7 @@ brave-search/
``` ```
**SKILL.md:** **SKILL.md:**
```markdown ````markdown
--- ---
name: brave-search name: brave-search
description: Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. description: Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content.
@@ -208,23 +208,23 @@ description: Web search and content extraction via Brave Search API. Use for sea
## Setup ## Setup
\`\`\`bash ```bash
cd /path/to/brave-search && npm install cd /path/to/brave-search && npm install
\`\`\` ```
## Search ## Search
\`\`\`bash ```bash
./search.js "query" # Basic search ./search.js "query" # Basic search
./search.js "query" --content # Include page content ./search.js "query" --content # Include page content
\`\`\` ```
## Extract Page Content ## Extract Page Content
\`\`\`bash ```bash
./content.js https://example.com ./content.js https://example.com
\`\`\`
``` ```
````
## Skill Repositories ## Skill Repositories