strings.Chomp
Returns the given string, removing all trailing newline characters and carriage returns.
- Syntax
- strings.Chomp STRING
- Returns
- any
- Alias
- 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" }} → fooLast updated:
April 10, 2025
:
Merge commit '5be51ac3db225d5df501ed1fa1499c41d97dbf65' (283e97783)
Improve this page