summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/showcase/showcase.go5
1 files changed, 4 insertions, 1 deletions
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 {