Colorear el código
From Wiki Makespace Madrid
Para colorear el código se puede utilizar la extensión syntaxhighlighting:
http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi
En resumidas cuentas, se utiliza:
<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight>
y queda el código así:
<syntaxhighlight lang="php"> <?php
$v = "string"; // sample initialization
?> html text <?
echo $v; // end of php code
?> </syntaxhighlight>
Y en resumidas cuentas, por alguna razón, todavía no funciona ;)