Es ist schon recht interessant, was Programmierer so als Kommentartext in ihren Kode schreiben. So begegnete mir beim Durchstöbern des Kodes von WordPress 2.0.4 folgende Methode:
wordpress-2.0.4\wp-includes\functions-formatting.php
function wp_richedit_pre($text) {
// Filtering a blank results in an annoying \n
if ( empty($text) ) return apply_filters('richedit_pre', '');
$output = $text;
$output = convert_chars($output);
$output = wpautop($output);
// These must be double-escaped or planets will collide.
$output = str_replace('<', '<', $output);
$output = str_replace('>', '>', $output);
return apply_filters('richedit_pre', $output);
}





