Gossamer Forum
Home : Products : Gossamer Forum : Development, Plugins and Globals :

Re: [yogi] Perl Code Highlighter Plugin Complete

Quote Reply
Re: [yogi] Perl Code Highlighter Plugin Complete In reply to
This is where CSS comes in handy. Just add some css to the header (or include it):
Code:
.var {
color: #000000;
}
...

Then to make things smaller, you can do a little 'ugly' html.
<a class=var>$foo</a>

You can make all of this even more compact, by doing some ugly css (combined with some ugly html):
Code:
<style type="text/css">
#var{color:#000000}
</style>
<a id=var>$foo</a>
Ugly, but small, and technically valid html / css.

Adrian
Subject Author Views Date
Thread Perl Code Highlighter Plugin Complete Paul 10910 Feb 13, 2002, 6:42 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Wil 10579 Feb 13, 2002, 6:51 AM
Post Re: [Wil] Perl Code Highlighter Plugin Complete
Paul 10572 Feb 13, 2002, 7:06 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
yogi 10652 Feb 13, 2002, 7:44 AM
Post Re: [yogi] Perl Code Highlighter Plugin Complete
Paul 10683 Feb 13, 2002, 8:02 AM
Post Re: [yogi] Perl Code Highlighter Plugin Complete
Paul 10577 Feb 13, 2002, 8:25 AM
Thread Re: [yogi] Perl Code Highlighter Plugin Complete
Paul 10656 Feb 14, 2002, 3:31 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Paul 10566 Feb 14, 2002, 1:20 PM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Wil 10548 Feb 15, 2002, 1:38 AM
Post Re: [Wil] Perl Code Highlighter Plugin Complete
Wil 10496 Feb 15, 2002, 1:40 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Alex 10570 Feb 13, 2002, 11:38 AM
Thread Re: [Alex] Perl Code Highlighter Plugin Complete
Paul 10665 Feb 13, 2002, 12:26 PM
Post Re: [RedRum] Perl Code Highlighter Plugin Complete
Paul 10561 Feb 13, 2002, 1:14 PM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Paul 10519 Feb 15, 2002, 2:49 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
Wil 10517 Feb 15, 2002, 3:57 AM
Post Re: [Wil] Perl Code Highlighter Plugin Complete
Wil 10459 Feb 15, 2002, 3:59 AM
Thread Re: [Wil] Perl Code Highlighter Plugin Complete
Paul 10579 Feb 15, 2002, 4:18 AM
Post Re: [RedRum] Perl Code Highlighter Plugin Complete
Wil 10537 Feb 15, 2002, 6:09 AM
Thread Re: [RedRum] Perl Code Highlighter Plugin Complete
yogi 10512 Feb 15, 2002, 4:31 AM
Thread Re: [yogi] Perl Code Highlighter Plugin Complete
Paul 10547 Feb 15, 2002, 4:43 AM
Post Re: [RedRum] Perl Code Highlighter Plugin Complete
Paul 10474 Feb 18, 2002, 3:07 AM
Post Re: [yogi] Perl Code Highlighter Plugin Complete
brewt 10453 Feb 15, 2002, 11:16 AM