libwww-perl / HTML-Parser

The HTML-Parser distribution is is a collection of modules that parse and extract information from HTML documents.
Other
6 stars 13 forks source link

Remove docs about the possibility of Perls below 5.8 #47

Closed petdance closed 2 months ago

petdance commented 2 months ago

HTML::Parser requires Perl 5.8, so the documentation about Perls below 5.6 or 5.8 are not necessary.

petdance commented 2 months ago

There's code in HTML::Entities that does similar run-time checking, like

 ( $] > 5.007 ? (
  'OElig;'    => chr(338),
  'oelig;'    => chr(339),
  'Scaron;'   => chr(352),
  'scaron;'   => chr(353),

Do we want to make similar changes there? If so, I'll make a seaprate PR for it.

oalders commented 2 months ago

A PR would be great!

petdance commented 2 months ago

Will do. Just wanted to make sure that we weren't going to want to split out HTML::Entities or something.

oalders commented 2 months ago

I don't know of any plans to split out HTML::Entities, so I don't think we need to worry about that.