From ce24423320fd669f54a70e9e29beeed3ae605f72 Mon Sep 17 00:00:00 2001 From: "Zhaoshan \"Joshua\" Duan" <45964239+Zhaoshan-Duan@users.noreply.github.com> Date: Mon, 6 Apr 2026 13:04:18 -0700 Subject: [PATCH] fix: nested code fence rendering in memory README (#48) * fix: nested code fence rendering in memory README Example 2 * fix: nested code fence rendering in skills README Example 2 --- 02-memory/README.md | 4 ++-- 03-skills/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/02-memory/README.md b/02-memory/README.md index 4e3e8cd..67a425e 100644 --- a/02-memory/README.md +++ b/02-memory/README.md @@ -641,7 +641,7 @@ Claude will load CLAUDE.md from the specified additional directory alongside the **File:** `./src/api/CLAUDE.md` -```markdown +````markdown # API Module Standards This file overrides root CLAUDE.md for everything in /src/api/ @@ -703,7 +703,7 @@ Error responses: - Cache duration: 5 minutes default - Invalidate on write operations - Tag cache keys with resource type -``` +```` ### Example 3: Personal Memory diff --git a/03-skills/README.md b/03-skills/README.md index d47fbbc..a81bc86 100644 --- a/03-skills/README.md +++ b/03-skills/README.md @@ -406,7 +406,7 @@ A skill that generates interactive HTML visualizations: **File:** `~/.claude/skills/codebase-visualizer/SKILL.md` -```yaml +````yaml --- name: codebase-visualizer description: Generate an interactive collapsible tree visualization of your codebase. Use when exploring a new repo, understanding project structure, or identifying large files. @@ -433,7 +433,7 @@ This creates `codebase-map.html` and opens it in your default browser. - **File sizes**: Displayed next to each file - **Colors**: Different colors for different file types - **Directory totals**: Shows aggregate size of each folder -``` +```` The bundled Python script does the heavy lifting while Claude handles orchestration.