input|break()
This operator takes a string as input. It does not replace newline characters/sequences, but it does insert HTML break tags ( <br /> ) before all newlines in a string and returns a modified version of the input.
{'The lazy cat jumps over the quick rat.'|break()}
The following output will be produced:
The lazy<br />cat<br />jumps over<br />the quick rat.