I learned about a new code-flood website today. Maybe this is common knowledge, but I didn't know about it until today. If you want folks to look at your code, but don't want to flood your IRC channel, consider the codebliss paste site. Even comes with syntax highlighting.
Re:Syntax
Juerd on 2003-06-12T21:00:11
"s/´/'/" should have been "s/´/'/".
Re:Syntax
djberg96 on 2003-06-12T21:41:37
It's highlighting strings as well, so it's not just keywords. But, yeah, that's a bug.Folks who know more than I do say the owner is using GNU's source highlighter which has problems with regex highlighting. I'll send an email.
BTW, scribble looks nice, but it only does HTML and Perl.
:( Re:Syntax
Juerd on 2003-06-12T22:45:39
> BTW, scribble looks nice, but it only does HTML and Perl.:(
Actually, it does any text you want:) Only Perl code is syntax coloured.
Reason for this is that I dislike fake syntax colouring where no attempt is made at really parsing the source. Most "syntax" colourers simply recognize some keywords and colour simple strings, like this Codebliss thing. I'd rather have no syntax colouring at all.
S::H::P has some bugs as of course only perl can parse Perl, but it's great for most code.Re:Syntax
koschei on 2003-06-12T23:28:15
Have you tried Perl::Tidy?