Add template funcs countwords and countrunes
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Sun, 20 Sep 2015 16:15:45 +0000 (18:15 +0200)
committerSteve Francia <steve.francia@gmail.com>
Sat, 2 Jan 2016 16:00:03 +0000 (11:00 -0500)
docs/content/templates/functions.md
tpl/template_funcs.go

index 29f26583271debe1b10b19abacbea16773de61dc..350d0782aef3e0c926450875a52d10d1b92f0356 100644 (file)
@@ -525,6 +525,26 @@ Converts all characters in string to uppercase.
 e.g. `{{upper "BatMan"}}` β†’ "BATMAN"
 
 
+### countwords
+
+`countwords` tries to convert the passed content to a string and counts each word
+in it. The template functions works similar to [.WordCount]({{< relref "templates/variables.md#page-variables" >}}).
+
+```html
+{{ "Hugo is a static site generator." | countwords }}
+<!-- outputs a content length of 6 words.  -->
+```
+
+
+### countrunes
+
+Alternatively to counting all words , `countrunes` determines the number  of runes in the content and excludes any whitespace. This can become useful if you have to deal with
+CJK-like languages.
+
+```html
+{{ "Hello, δΈ–η•Œ" | countrunes }}
+<!-- outputs a content length of 8 runes. -->
+```
 
 
 ## URLs
index 8368bac8412cc096e251eb77f308402068f8029b..e7166ea1c2427478363345185040d4b49a783775 100644 (file)
@@ -26,6 +26,7 @@ import (
        "strconv"
        "strings"
        "time"
+       "unicode/utf8"
 
        "bitbucket.org/pkg/inflect"
 
@@ -1385,6 +1386,43 @@ func Base64Encode(content interface{}) (string, error) {
        return base64.StdEncoding.EncodeToString([]byte(conv)), nil
 }
 
+func CountWords(content interface{}) (int, error) {
+       conv, err := cast.ToStringE(content)
+
+       if err != nil {
+               return 0, errors.New("Failed to convert content to string: " + err.Error())
+       }
+
+       counter := 0
+       for _, word := range strings.Fields(helpers.StripHTML(conv)) {
+               runeCount := utf8.RuneCountInString(word)
+               if len(word) == runeCount {
+                       counter++
+               } else {
+                       counter += runeCount
+               }
+       }
+
+       return counter, nil
+}
+
+func CountRunes(content interface{}) (int, error) {
+       conv, err := cast.ToStringE(content)
+
+       if err != nil {
+               return 0, errors.New("Failed to convert content to string: " + err.Error())
+       }
+
+       counter := 0
+       for _, r := range helpers.StripHTML(conv) {
+               if !helpers.IsWhitespace(r) {
+                       counter++
+               }
+       }
+
+       return counter, nil
+}
+
 func init() {
        funcMap = template.FuncMap{
                "urlize":       helpers.URLize,
@@ -1444,6 +1482,8 @@ func init() {
                "getenv":       func(varName string) string { return os.Getenv(varName) },
                "base64Decode": Base64Decode,
                "base64Encode": Base64Encode,
+               "countwords":   CountWords,
+               "countrunes":   CountRunes,
                "pluralize": func(in interface{}) (string, error) {
                        word, err := cast.ToStringE(in)
                        if err != nil {