package HTML::Parser; # Author address: use strict; use HTML::Entities (); use vars qw($VERSION); $VERSION = "2.23"; # $Date: 1999/06/09 10:27:16 $ sub new { my $class = shift; my $self = bless { '_buf' => '', '_strict_comment' => 0, }, $class; $self; } # A little note about the observed Netscape behaviour: # # It parse in the depreceated 'literal' mode, i.e. no tags are # recognized until a is found. # # is parsed like
, i.e. tags are recognized.  # are presentend in smaller font than 
#
# Netscape does not parse this comment correctly (it terminates the comment
# too early):
#
#     more comment -->
#
# Netscape ignores '' within the