in reply to HTML: Syntax highlightning for perl-Code

perltidy -html.

Using the -nss option to suppress style sheets, and trimming out a few things:

hello.pl


#!/usr/bin/perl -w

use strict;

for(1..2) {
    print "Hello, world #$_!\n";
}

--
Mike
  • Comment on Re: HTML: Syntax highlightning for perl-Code