Colorear el código
From Wiki Makespace Madrid
Revision as of 12:48, 19 January 2014 by Cesar Garcia Saez (Talk | contribs) (Agregado el resumen de como colorear el código)
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>