The following:
use HTML::Element;
my $e = new HTML::Element( 'a',
'href' => 'http://cgi-foo/foo.cgi?A=B&C=D' );
print $e->starttag( );
Generates:
<A HREF="http://cgi-foo/foo.cgi?A=B&C=D">
This is a case where I don't want the & encoded...
-sls