look at this file: doceboCore/lib/lib.pagewriter.php
you can add the parser in this method:
line 153
function getContent() {
$out = '';
if(empty($this->_contentOut) && $this->print_if_empty === false)
return $out;
$out.=implode($this->_startOut);
$out.=implode($this->_contentOut);
$out.=implode($this->_endOut);
$out =fillSiteBaseUrlTag($out);
// add the parser here modifing the $out var
return $out;
}
If you want, take a look to this project :
http://code.google.com/p/syntaxhighlighter/
it work via js, so you don't need to add a server parser
Cya
Fabio
rpSetzer ha scritto: