From e27bea64bd298886fb5a048c60a497d5c1c468bf Mon Sep 17 00:00:00 2001 From: CZ Date: Sun, 3 May 2026 22:25:43 -0700 Subject: [PATCH] fix: use quadruple backticks for CLAUDE.md template code blocks Outer code blocks used triple backticks (```markdown), but nested Swift/tree code blocks inside them also used triple backticks, causing the first inner fence to close the outer block early and break rendering. Affected sections: Root CLAUDE.md template (lines 122, 230) and Nested CLAUDE.md template (lines 236, 268). Co-Authored-By: Claude Sonnet 4.6 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aa2f6f7..231f18f 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ The `CLAUDE.md` file is your primary context provider. Claude automatically load Create `CLAUDE.md` in your project root: -```markdown +````markdown # Project: [Your App Name] ## Quick Reference @@ -227,13 +227,13 @@ When starting new features: @import docs/PRD.md @import docs/ARCHITECTURE.md @import docs/ROADMAP.md -``` +```` ### Nested CLAUDE.md for Feature Directories Create `.claude/CLAUDE.md` or `Features/[FeatureName]/CLAUDE.md`: -```markdown +````markdown # [Feature Name] Module ## Purpose @@ -265,7 +265,7 @@ final class ParentViewModel { ## Testing Run tests: `mcp__xcodebuildmcp__swift_package_test` -``` +```` ---