strip

Isto substitui todos os espaços repetidos, novas linhas e tabs por um único espaço ou a string indicada.

Nota: Se você quer substituir blocos de texto do template, use a função strip.

Exemplo 5-19. strip

index.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', "Grandmother of\neight makes\t hole in one.");
$smarty->display('index.tpl');
index.tpl:
{$articleTitle}
{$articleTitle|strip}
{$articleTitle|strip:" "}
MOSTRA:
Grandmother of eight makes hole in one.
Grandmother of eight makes hole in one.
Grandmother of eight makes hole in one.