Files
2026-05-13 09:43:32 -04:00

23 lines
619 B
PHP

<?php
function smarty_block_smart_strip($params, $content, &$smarty)
{
if ($content)
{
$hasTrallingLineBreak = false;
if (count($content) > 0)
if ($content[count($content)] = "\n")
$hasTrallingLineBreak = true;
$result = $content;
$result = preg_replace('!>\s+!', '>', $result);
$result = preg_replace('!\s+?<!', '<', $result);
$result = preg_replace('!\s+?>!', '>', $result);
$result = preg_replace('!\s+!', ' ', $result);
if ($hasTrallingLineBreak)
$result .= "\n";
return $result;
}
}
?>