1
0
Fork 0
hugo/docs/content/en/functions/strings/Chomp.md

543 B

title description categories keywords params aliases
strings.Chomp Returns the given string, removing all trailing newline characters and carriage returns.
functions_and_methods
aliases returnType signatures
chomp
any
strings.Chomp STRING
/functions/chomp

If the argument is of type template.HTML, returns template.HTML, else returns a string.

{{ chomp "foo\n" }} → foo
{{ chomp "foo\n\n" }} → foo

{{ chomp "foo\r\n" }} → foo
{{ chomp "foo\r\n\r\n" }} → foo