Skip to content

Commit

Permalink
remove "title" func
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSova committed Sep 19, 2023
1 parent 7e62022 commit d094664
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ To learn more about the templating syntax, please [see the Go `text/template` do
* [`trimSuffix` string suffix](https://pkg.go.dev/strings#TrimSuffix)
* [`lower` string suffix](https://pkg.go.dev/strings#ToLower)
* [`upper` string suffix](https://pkg.go.dev/strings#ToUpper)
* [`title` string suffix](https://pkg.go.dev/strings#ToTitle)
* [`camelcase` string suffix](https://pkg.go.dev/github.com/huandu/xstrings#ToCamelCase)
* [`snakecase` string suffix](https://godoc.org/github.com/huandu/xstrings#ToSnakeCase)
* [`kebabcase` string suffix](https://godoc.org/github.com/huandu/xstrings#ToKebabCase)
Expand Down
1 change: 0 additions & 1 deletion pkg/outputter.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ var templateFuncMap = template.FuncMap{
"trimSuffix": strings.TrimSuffix,
"lower": strings.ToLower,
"upper": strings.ToUpper,
"title": strings.ToTitle,
"camelcase": xstrings.ToCamelCase,
"snakecase": xstrings.ToSnakeCase,
"kebabcase": xstrings.ToKebabCase,
Expand Down

0 comments on commit d094664

Please sign in to comment.