diff options
author | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-21 10:21:37 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-21 10:21:51 +0200 |
commit | 39121de4d991bdcf5f202da4d8d81a8ac6c149fc (patch) | |
tree | 97e0b638fea1d898de9e297732d1044b49bfba8e /docs/content/en/functions/printf.md | |
parent | 180195aa342777fece1b29a08ec89456d7996c61 (diff) | |
download | hugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.tar.gz hugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.zip |
docs: Replace /docs
Diffstat (limited to 'docs/content/en/functions/printf.md')
-rw-r--r-- | docs/content/en/functions/printf.md | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/content/en/functions/printf.md b/docs/content/en/functions/printf.md deleted file mode 100644 index dabb97c05..000000000 --- a/docs/content/en/functions/printf.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: printf -linktitle: printf -description: Formats a string using the standard `fmt.Sprintf` function. -godocref: https://golang.org/pkg/fmt/ -date: 2017-02-01 -publishdate: 2017-02-01 -lastmod: 2017-02-01 -categories: [functions] -menu: - docs: - parent: "functions" -keywords: [strings] -signature: ["printf FORMAT INPUT"] -workson: [] -hugoversion: -relatedfuncs: [] -deprecated: false ---- - -See [the go doc](https://golang.org/pkg/fmt/) for additional information. - -``` -{{ i18n ( printf "combined_%s" $var ) }} -``` - -``` -{{ printf "formatted %.2f" 3.1416 }} -``` |