Fix POD for User.pm

Add POD for HTML.pm
This commit is contained in:
Colin Kuskie 2009-03-31 03:20:57 +00:00
parent 7a650bb8a3
commit fa15f92b68
2 changed files with 15 additions and 2 deletions

View file

@ -442,6 +442,18 @@ sub splitTag {
return @result if wantarray;
return $result[0];
}
#-------------------------------------------------------------------
=head2 WebGUI::HTML::splitHeadBody($html);
splits an block of HTML into a HEAD and a BODY section
=head3 html
The block of HTML text that will be disected
=cut
sub splitHeadBody {
my $html = shift;