mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
20 lines
475 B
Markdown
20 lines
475 B
Markdown
---
|
|
title: strings.CountWords
|
|
description: Returns the number of words in the given string.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [countwords]
|
|
related:
|
|
- functions/go-template/len
|
|
- functions/strings/Count
|
|
- functions/strings/CountRunes
|
|
- functions/strings/RuneCount
|
|
returnType: int
|
|
signatures: [strings.CountWords INPUT]
|
|
aliases: [/functions/countwords]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ "Hugo is a static site generator." | countwords }} → 6
|
|
```
|