MCPcopy Create free account
hub / github.com/driangle/taskmd / capitalizeFirst

Function capitalizeFirst

apps/cli/internal/cli/report_md.go:233–238  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

231}
232
233func capitalizeFirst(s string) string {
234 if s == "" {
235 return s
236 }
237 return strings.ToUpper(s[:1]) + s[1:]
238}
239
240func writeMarkdownGraph(mermaid string, w io.Writer) {
241 fmt.Fprintln(w, "## Dependency Graph")

Callers 2

toHTMLDataFunction · 0.85
writeMarkdownGroupsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected