См. также: http://www.php.net/manual/function.strip-tags.php = Examples = Some Text with Tags and an Ümlaut. Some Text with Tags and an Ümlaut. (strip_tags() applied. Note: encoded entities are not decoded) {text -> f:format.stripTags()} Text without tags (strip_tags() applied)
Наследование: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function renderDoesNotModifySourceIfItIsAnObjectThatCantBeConvertedToAString()
 {
     $user = new UserWithoutToString('Xaver <b>Cross-Site</b>');
     $this->viewHelper->expects($this->once())->method('buildRenderChildrenClosure')->willReturn(function () {
         throw new \Exception('rendderChildrenClosure was invoked but should not have been');
     });
     $this->viewHelper->setArguments(['value' => $user]);
     $actualResult = $this->viewHelper->render();
     $this->assertSame($user, $actualResult);
 }