Subject: | Generates invalid HTML with only_content => 1 |
Line 258 from HtmlEasy.pm reads like this:
$html = "<a name='_top'></a>$args{top}$args{index}<div
class='pod'><div>$output<div></div>\n"
The intention of this line seems to be to wrap the $output into two div
elements.
First, I don't see why there are two of them. Second, the generated HTML
is invalid as the div tag after $output is an opening, not a closing tag.
Changing this line to the following will fix that:
$html = "<a name='_top'></a>$args{top}$args{index}<div
class='pod'><div>$output</div></div>\n"
Regards,
Flo