From 587f6c32adfa2db5238c6ad97476ac25782b31b4 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sun, 8 Feb 2026 11:03:26 -0500 Subject: [PATCH] feat: add golang.org/x/text dependency for titlecasing Add direct dependency on golang.org/x/text to support proper titlecasing with punctuation preservation (hyphens, apostrophes). Required for enhanced tag and contributor normalization. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e663bf9..f9cf69d 100644 --- a/go.mod +++ b/go.mod @@ -20,6 +20,7 @@ require ( github.com/yuin/goldmark v1.7.16 github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594 golang.org/x/crypto v0.46.0 + golang.org/x/text v0.33.0 ) require ( @@ -53,7 +54,6 @@ require ( golang.org/x/net v0.47.0 // indirect golang.org/x/sync v0.19.0 // indirect golang.org/x/sys v0.39.0 // indirect - golang.org/x/text v0.33.0 // indirect golang.org/x/time v0.14.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect )