You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fixed this in PhilterPaper/HTML-Tagset by changing the POD and code:
=head2 hashset %HTML::Tagset::isHeadElement
This hashset contains all elements that elements that may be
present in the 'head' element of an HTML document. Some, such as <script>,
may also by in the 'body'.
=cut
our %isHeadElement = (
map {; $_ => 1 } qw(
title
base basefont
link
meta
object
),
%isHeadOrBodyElement,
);
The text was updated successfully, but these errors were encountered:
Originally opened by "bkb" 2015-11-16 as RT 109044 "Documentation of %isHeadElement is misleading". Please close the RT ticket.
==============================================================================
The documentation for %isHeadElement claims
However, %isHeadElement contains tags like <script> which may be present either in the head or the body section of an HTML document.
==============================================================================
I fixed this in PhilterPaper/HTML-Tagset by changing the POD and code:
The text was updated successfully, but these errors were encountered: