mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-02 06:58:40 +00:00
527 B
527 B
title | linkTitle | description | categories | keywords | menu | function | relatedFunctions | aliases | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fmt.Print | Prints the default representation of the given arguments using the standard `fmt.Print` function. |
|
|
|
|
|
{{ print "foo" }} → "foo"
{{ print "foo" "bar" }} → "foobar"
{{ print (slice 1 2 3) }} → [1 2 3]