Say I've got this source snippet in a trac ticket:
var a = 1;
var b = 2;
alert(b);
In order to have it rendered as source code, I put up the needed {{{
... }}}
block around the statement:
{{{#!js
var a = 1;
var b = 2;
alert(b);
}}}
How do I achieve it that the line var b = 2;
is rendered for example in red?