>
> Yeah I read that. How is <META NAME=keywords CONTENT="blah, blah"> tag
> handled?
moulon% cat a.pl
#!/usr/bin/perl
require HTML::HeadParser;
my $p = HTML::HeadParser->new;
$p->parse(<<EOF) and print "not finished";
EOF
print $p->header('x-meta-keywords'),"\n";
moulon% a.pl
blah, blah
moulon%
Guy Decoux