Files
hugo/content/functions/chomp.md
T

22 lines
505 B
Markdown

---
title: chomp
linktitle: chomp
description:
godocref: Removes any trailing newline characters.
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [functions]
tags: [trim]
signature:
workson: []
hugoversion:
relatedfuncs: [truncate]
deprecated: false
---
Removes any trailing newline characters. Useful in a pipeline to remove newlines added by other processing (e.g., [`markdownify`](/functions/markdownify/)).
```golang
{{chomp "<p>Blockhead</p>\n"}} "<p>Blockhead</p>"
```