HTML::TreeBuilder tree structure seems weird
Brian Slesinsky (bslesins@best.com)
Thu, 1 Oct 1998 16:07:29 -0700 (PDT)
Hi, I'm wondering why HTML::TreeBuilder doesn't put in more implicit
end-paragraphs. For example, here's a simple document:
Some text
<ul>
<li> first item
<li> second item
</ul>
More text
Here's what a dump looks like:
"Some text "
" "
-
" first item "
-
" second item "
" More text"
It seems to me that the
shouldn't be within the previous paragraph
and "More text" should be in a new paragraph.
Also, why is the
tag in the %isPhraseMarkup hash when according to
the HTML 3.2 spec,
is a "block level" tag?
----------------------------------------------------------------------
Brian Slesinsky