From 3be345095feaf8877fb81ac49687c8be47bbca3b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 20 Jul 2025 13:43:13 +0300 Subject: feat: remove code snippets from showcase output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed code snippet generation from the showcase.gmi.tpl template to simplify the output and focus on project descriptions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- internal/showcase/showcase.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index 815614c..f1c8624 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -570,10 +570,6 @@ func (g *Generator) formatGemtext(summaries []ProjectSummary) string { builder.WriteString(fmt.Sprintf("=> %s View on GitHub\n", summary.GitHubURL)) } - // Add code snippet at the end for all projects - if summary.CodeSnippet != "" { - builder.WriteString(fmt.Sprintf("\n%s:\n\n```AUTO\n%s\n```\n", summary.CodeLanguage, summary.CodeSnippet)) - } } return builder.String() -- cgit v1.2.3