chore: auto-commit (43 archivos)
- .mcp.json - bash/functions/infra/write_mcp_jupyter_config.md - bash/functions/infra/write_mcp_jupyter_config.sh - cpp/CMakeLists.txt - cpp/apps/chart_demo - cpp/apps/shaders_lab - cpp/functions/gfx/gl_framebuffer.cpp - cpp/functions/gfx/gl_framebuffer.h - cpp/functions/gfx/gl_framebuffer.md - cpp/functions/gfx/mesh_gpu.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
+7
-1
@@ -500,7 +500,13 @@ func walkMD(dir string, fn func(path string)) {
|
||||
if err != nil || info.IsDir() || !strings.HasSuffix(path, ".md") {
|
||||
return nil
|
||||
}
|
||||
if filepath.Base(path) == "module.md" {
|
||||
base := filepath.Base(path)
|
||||
if base == "module.md" {
|
||||
return nil
|
||||
}
|
||||
// Skip module-level doc files that are not function/type entries.
|
||||
switch base {
|
||||
case "MIGRATION.md", "README.md", "CHANGELOG.md":
|
||||
return nil
|
||||
}
|
||||
fn(path)
|
||||
|
||||
Reference in New Issue
Block a user