libhtml-simpleparse-perl 0.12-5 source package in Ubuntu

Changelog

libhtml-simpleparse-perl (0.12-5) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libhtml-simpleparse-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 16:26:45 +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

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhtml-simpleparse-perl_0.12-5.dsc 2.1 KiB d456bc090cf694d1a1f0855340d02b9b7999ae428fb119b75af2b7af90cb8c9c
libhtml-simpleparse-perl_0.12.orig.tar.gz 8.3 KiB c103a19cf99801489ce23e4da86a5f9df79f032f1f1c71b8130d0d3ff96e6304
libhtml-simpleparse-perl_0.12-5.debian.tar.xz 2.9 KiB e4c233a9b5776d88c7da8f66050af78671a81d35cc8eccd1d0a131d560a5a638

Available diffs

No changes file available.

Binary packages built by this source

libhtml-simpleparse-perl: bare-bones HTML parser

 HTML::SimpleParse is a bare-bones HTML parser, similar to HTML::Parser,
 but with a couple important distinctions:
 .
 First, HTML::Parser knows which tags can contain other tags, which start
 tags have corresponding end tags, which tags can exist only in the <HEAD>
 portion of the document, and so forth. HTML::SimpleParse does not know any
 of these things. It just finds tags and text in the HTML you give it, it
 does not care about the specific content of these tags (though it does
 distinguish between different _types_ of tags, such as comments, starting
 tags like <b>, ending tags like </b>, and so on).
 .
 Second, HTML::SimpleParse does not create a hierarchical tree of HTML
 content, but rather a simple linear list. It does not pay any attention to
 balancing start tags with corresponding end tags, or which pairs of tags are
 inside other pairs of tags.