Subject: | block elements |
Would be nice to have a list of elements which "break line" when
textified. I actually this in my HTML::AsText::Fix:
# source: http://en.wikipedia.org/wiki/HTML_element#Block_elements
%isBlockElement = map {; $_ => 1 } qw(
p
h1 h2 h3 h4 h5 h6
dl dt dd
ol ul li
dir
address
blockquote
center
del
div
hr
ins
noscript script
pre
);
Not sure what to do with <br>: it breaks line but it's not a block
element.