Topic: [php]BBcode[/php]
Hi,
I think you should add BBcode [php] [/php] to punbb, as it can highlight source code, eg php, javascript, etc.
just use the php function highlight_string to do that
You are not logged in. Please login or register.
PunBB Forums → Feature requests → [php]BBcode[/php]
Hi,
I think you should add BBcode [php] [/php] to punbb, as it can highlight source code, eg php, javascript, etc.
just use the php function highlight_string to do that
$pattern[] = '#\[php\](.*?)\[/php\]#ms';
$replace[] = '<div class="codebox"><pre>[php]$1[/php]</pre></div>';
$pattern[] = '#\[php\](.*?)\[/php\]#e';
$replace[] = 'highlight_string(html_entity_decode(\'<?php'."\n\n".'$1'."\n\n".'?>\', ENT_COMPAT, \'UTF-8\'), true)';
on line 706 of 'include/parser.php'.
Where would add this?
on line 706 of 'include/parser.php'. ???
PunBB Forums → Feature requests → [php]BBcode[/php]
Powered by PunBB, supported by Informer Technologies, Inc.