hugo/docs/content/en/functions/fmt/Printf.md
2023-12-04 15:24:01 +01:00

840 B

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

{{% include "functions/fmt/_common/fmt-layout.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">