From 35b38d55f9260e49fc8a910a78fd1cfdf4b6bcb5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 8 Jul 2025 22:40:42 +0300 Subject: fix: change showcase formatting to use Projects section with ### headers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add "## Projects" section header - Change individual project headers from ## to ### - Better structure for the showcase document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- internal/showcase/showcase.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index c2ed7ae..e9ae55f 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -342,13 +342,16 @@ func (g *Generator) formatGemtext(summaries []ProjectSummary) string { builder.WriteString(fmt.Sprintf("Generated on: %s\n\n", time.Now().Format("2006-01-02"))) + // Add Projects section + builder.WriteString("## Projects\n\n") + // Add each project for i, summary := range summaries { if i > 0 { builder.WriteString("\n---\n\n") } - builder.WriteString(fmt.Sprintf("## %s\n\n", summary.Name)) + builder.WriteString(fmt.Sprintf("### %s\n\n", summary.Name)) // Add metadata if available if summary.Metadata != nil { -- cgit v1.2.3