1
0
Fork 0
hugo/docs/content/en/functions/fmt/Printf.md

810 B

title description categories keywords params aliases
fmt.Printf Formats a string using the standard `fmt.Sprintf` function.
functions_and_methods
aliases returnType signatures
printf
string
fmt.Printf FORMAT [INPUT]
/functions/printf

{{% include "/_common/functions/fmt/format-string.md" %}}

{{ $var := "world" }}
{{ printf "Hello %s." $var }} → Hello world.
{{ $pi := 3.14159265 }}
{{ printf "Pi is approximately %.2f." $pi }} → 3.14

Use the printf function with the safeHTMLAttr function:

{{ $desc := "Eat at Joe's" }}
<meta name="description" {{ printf "content=%q" $desc | safeHTMLAttr }}>

Hugo renders this to:

<meta name="description" content="Eat at Joe's">