Files
hugo_blog.awin.one/layouts/partials/utils/camelize.html
2022-05-10 01:13:38 +08:00

8 lines
235 B
HTML

{{ $input := . }}
{{ $regexp := "(-|_)([a-z])" }}
{{ $matches := findRE $regexp $input }}
{{ range $matches }}
{{ $input = $input | replaceRE . (upper .) }}
{{ end }}
{{ $input = $input | replaceRE "(-|_)" "" }}
{{ return $input }}