CLI/TUI for drafting, repeating, and publishing daily standup updates as GitHub issues
github go cli golang management project tui daily
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: use h3 for sections and standardize empty response text

+6 -6
+2 -2
internal/daily/entry.go
··· 330 330 } 331 331 332 332 func renderSection(field issueform.Field, body string) string { 333 - heading := "## " + field.Label 333 + heading := "### " + field.Label 334 334 if field.ID != "" { 335 335 heading += " <!-- pad:id:" + field.ID + " -->" 336 336 } ··· 515 515 func normalizeSectionBody(body string) string { 516 516 trimmed := strings.TrimSpace(body) 517 517 if trimmed == "" { 518 - return "_None._" 518 + return "_No response_" 519 519 } 520 520 521 521 return trimmed
+4 -4
internal/daily/entry_test.go
··· 185 185 186 186 checks := []string{ 187 187 "## Daily Standup Update", 188 - "## ✅ What did you do yesterday? <!-- pad:id:yesterday -->", 189 - "## 🎯 What will you do today? <!-- pad:id:today -->", 190 - "## 🚧 Any blockers? <!-- pad:id:blockers -->", 191 - "_None._", 188 + "### ✅ What did you do yesterday? <!-- pad:id:yesterday -->", 189 + "### 🎯 What will you do today? <!-- pad:id:today -->", 190 + "### 🚧 Any blockers? <!-- pad:id:blockers -->", 191 + "_No response_", 192 192 } 193 193 194 194 for _, check := range checks {