summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/printf.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:37 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:51 +0200
commit39121de4d991bdcf5f202da4d8d81a8ac6c149fc (patch)
tree97e0b638fea1d898de9e297732d1044b49bfba8e /docs/content/en/functions/printf.md
parent180195aa342777fece1b29a08ec89456d7996c61 (diff)
downloadhugo-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.md29
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 }}
-```