libhtml-html5-sanity-perl 0.105-5 source package in Ubuntu

Changelog

libhtml-html5-sanity-perl (0.105-5) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper dependency to >= 9, since that's what is used in
    debian/compat.
  * Bump debhelper from deprecated 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository, Repository-Browse.
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Mon, 11 Jul 2022 17:44:37 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhtml-html5-sanity-perl_0.105-5.dsc 1.9 KiB aa199b6cbfa0e7d9e561056b93d65b8800afb884e7fd95488fbe77a34fb675d6
libhtml-html5-sanity-perl_0.105.orig.tar.gz 21.6 KiB b51fbc9577ddddf4a01b1176678d670a36eb0587552fc14ed60a33fd9f1b3786
libhtml-html5-sanity-perl_0.105-5.debian.tar.xz 4.6 KiB 65f5a5a32c37ae1efcadbc6eedac91f50f4ac3c37fb1f7b8ca173fbc67821e35

Available diffs

No changes file available.

Binary packages built by this source

libhtml-html5-sanity-perl: make HTML5 DOM trees less insane

 HTML::HTML5::Sanity is a Perl library tidying HTML::HTML5::Parser.
 .
 The Document Object Model (DOM) generated by HTML::HTML5::Parser meets
 the requirements of the HTML5 spec, but will probably catch a lot of
 people by surprise.
 .
 The main oddity is that elements and attributes which appear to be
 namespaced are not really. For example, the following element:
 .
  <div xml:lang="fr">...</div>
 .
 Looks like it should be parsed so that it has an attribute "lang" in
 the XML namespace. Not so. It will really be parsed as having the
 attribute "xml:lang" in the null namespace.