Difference between revisions of "Colorear el código"
From Wiki Makespace Madrid
(Agregado el resumen de como colorear el código) |
(Cómo colorear el código (cuando funcione!)) |
||
Line 27: | Line 27: | ||
?> | ?> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | Y en resumidas cuentas, por alguna razón, todavía no funciona ;) |
Latest revision as of 12:51, 19 January 2014
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 ;)