How to Install and Uninstall perl-HTML-SimpleParse Package on openSuSE Tumbleweed

Last updated: May 16,2024

1. Install "perl-HTML-SimpleParse" package

Learn how to install perl-HTML-SimpleParse on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-HTML-SimpleParse

2. Uninstall "perl-HTML-SimpleParse" package

Please follow the steps below to uninstall perl-HTML-SimpleParse on openSuSE Tumbleweed:

$ sudo zypper remove perl-HTML-SimpleParse

3. Information about the perl-HTML-SimpleParse package on openSuSE Tumbleweed

Information for package perl-HTML-SimpleParse:
----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-HTML-SimpleParse
Version : 0.12-284.20
Arch : noarch
Vendor : openSUSE
Installed Size : 22.3 KiB
Installed : No
Status : not installed
Source package : perl-HTML-SimpleParse-0.12-284.20.src
Upstream URL : http://search.cpan.org/perldoc?HTML::SimpleParse
Summary : a bare-bones HTML parser
Description :
This is the HTML::SimpleParse module. It 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 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 distiguish between different _types_ of tags, such
as comments, starting tags like , ending tags like , 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.
Because of these characteristics, you can make a very effective HTML
filter by sub-classing HTML::SimpleParse.