См. также: http://www.php.net/manual/en/function.nl2br.php = Examples = {text_with_linebreaks} text with line breaks replaced by
{text_with_linebreaks -> f:format.nl2br()} text with line breaks replaced by
Наследование: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function viewHelperConvertsWindowsLineBreaksToBRTags()
 {
     $this->viewHelper->expects($this->once())->method('renderChildren')->will($this->returnValue('Line 1' . chr(13) . chr(10) . 'Line 2'));
     $actualResult = $this->viewHelper->render();
     $this->assertEquals('Line 1<br />' . chr(13) . chr(10) . 'Line 2', $actualResult);
 }