Any way to get this to plug into the code button? The by doign [code] example code [/ code] it would automatically replace it with [highlight=Java] example code [/ highlight].
This would be much easier for less technical forum users to work and means the admin could limit the syntax highlighting to one specific language like Java if you run a Java programming forum.
Previously I got Geshi to work on the code button but I had to hack the php code for BBcode. Nice to see a more friendly way to get Geshi in there now anyway.
ffevo: You can change fonts and colours by editing the php.php file or what ever language you are using in /incudes/geshi
Also would like to suggest the following changes
Code:
if (!is_array($codefind))
{
$codefind1 = array(
'<br>', // <br> to nothing
'<br />' // <br /> to nothing
);
$codereplace1 = array(
'',
''
);
$codefind2 = array(
'>', // > to >
'<', // < to <
'"', // " to ",
'&', // & to &
'& #91;', // without the space after the &
'& #93;', // ] without the space after the &
);
$codereplace2 = array(
'>',
'<',
'"',
'&',
'[',
']',
);
}
It sorts out the issue with square brackets.
EDIT: you can edit includes/class_bbcode.php to get the plugin to use [code] with a bit of hacking. Can't be doign with that at the moment so I'm back at my own method. The author of this mod may want to explore this though.