Skip to content

Commit e4f730a

Browse files
sjnimsclaude
andauthored
fix(command-development): remove inconsistent backtick escaping (#61)
## Summary Remove backslash escaping from bash pre-execution syntax examples that were inconsistent with the rest of the documentation file. ## Problem Fixes #58 Lines 396-398 in `plugin-features-reference.md` used escaped backticks (`!\``) while all other 27 bash pre-execution examples in the file use unescaped backticks (`!``). This created visual inconsistency in the documentation. ## Solution Removed the backslash escaping from the two affected lines to match the file's consistent pattern. ### Changes - `plugins/plugin-dev/skills/command-development/references/plugin-features-reference.md`: Remove `\` from `!\`` syntax on lines 396 and 398 ## Testing - [x] Verified no escaped backticks remain in file - [x] Verified 27 unescaped bash execution patterns now consistent - [x] Markdownlint passes --- 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent 03f2cb4 commit e4f730a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/plugin-dev/skills/command-development/references/plugin-features-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,9 @@ description: Commit with pre-commit validation
393393
allowed-tools: Bash(git:*)
394394
---
395395

396-
Stage changes: !\`git add $1\`
396+
Stage changes: !`git add $1`
397397

398-
Commit changes: !\`git commit -m "$2"\`
398+
Commit changes: !`git commit -m "$2"`
399399

400400
Note: This commit will trigger the plugin's pre-commit hook for validation.
401401
Review hook output for any issues.

0 commit comments

Comments
 (0)