I've tried a few things such as Replacement Variables, but they have no effect.
I've tried some php code, here is what seems to be valid, but takes no effect either:
Code:
require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$parsed_text = $parser->do_parse($text, $do_html, $do_smilies, $do_bbcode, $do_imgcode, $do_nl2br, $cachable);
$parsed_text = preg_replace('/"/', '"', $parsed_text);
$parsed_text = strtr($parsed_text, array('"' => '"'));
$parsed_text = str_replace('"', '"', $parsed_text);
$parsed_text = htmlspecialchars($parsed_text);
--------------- Added 29 Apr 2008 at 02:59 ---------------
===UDATE===
I feel like an idiot... It works fine now. I had the same profile field parsed twice. And it parsed the first one without any HTML and so forth, rather than the second one asking to be parsed correctly.
In any case, all is well.