';
$lv ++;
}
while ( $lv > $nlv ) {
$text .= '';
$lv --;
}
}
if (startsWith ( $t, '!!!!! ' )) {
$t = '
' . substr ( $t, 6 ) . '
';
}
if (startsWith ( $t, '!!!! ' )) {
$t = '' . substr ( $t, 5 ) . '
';
}
if (startsWith ( $t, '!!! ' )) {
$t = '' . substr ( $t, 4 ) . '
';
}
if (startsWith ( $t, '!! ' )) {
$t = '' . substr ( $t, 3 ) . '
';
}
if (startsWith ( $t, '! ' )) {
$t = '' . substr ( $t, 2 ) . '
';
}
if ($lv == 0) {
$text .= $t;
} else {
$text .= '' . $t . '';
}
// var_dump ( $t );
}
while ( $lv > 0 ) {
$text .= '';
$lv --;
}
return $text;
}
?>