Skip Menu |

This queue is for tickets about the HTML-Tagset CPAN distribution.

Report information
The Basics
Id: 74627
Status: new
Priority: 0/
Queue: HTML-Tagset

People
Owner: Nobody in particular
Requestors: stas [...] sysd.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



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.