nl2br
   All linebreaks will be converted to <br /> tags in the given
   variable. This is equivalent to the PHP
   nl2br() function.
  
| Example 5-13. nl2br | 
<?php
 $smarty->assign('articleTitle',
 "Sun or rain expected\ntoday, dark tonight"
 );
 
 ?>
 | 
 
    Where template is:
    
    This should output:
    | Sun or rain expected<br />today, dark tonight | 
 | 
   See also word_wrap,
   count_paragraphs
   and count_sentences.