Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.478.809 Times

Html Formatter Tidy freeware
Filter: All | Freeware | Demo
 

Html Formatter Tidy

< 1 2 3 4 5 > 
Added: September 14, 2010 | Visits: 1.087

HTML::FromText HTML::FromText is a Perl module that can convert plain text to HTML. SYNOPSIS use HTML::FromText; text2html( $text, %options ); # or use HTML::FromText (); my $t2h = HTML::FromText->new( %options ); my $html = $t2h->parse( $html ); HTML::FromText converts plain text to HTML. There... Platforms: *nix

License: Freeware Size: 13.31 KB Download (113): HTML::FromText Download

Added: November 13, 2010 | Visits: 684

HTML::CMTemplate HTML::CMTemplate.pm is a Perl module that can generate text-based content from templates. SYNOPSIS use HTML::CMTemplate; $t = new HTML::CMTemplate( path => [ /path1, /longer/path2 ] ); $t->import_template( filename => file.html.ctpl, # in the paths above packagename => theTemplate,... Platforms: *nix

License: Freeware Size: 65.54 KB Download (98): HTML::CMTemplate Download

Added: September 01, 2010 | Visits: 1.070

HTML::Mail HTML::Mail is a Perl extension for sending emails with embedded HTML and media. SYNOPSIS use HTML::Mail; ### initialisation my $html_mail = HTML::Mail->new( HTML => http://www.cpan.org, Text => This is the text representation of the webpage http://www.cpan.org, From => me@myhost.org,... Platforms: *nix

License: Freeware Size: 15.36 KB Download (94): HTML::Mail Download

Added: October 03, 2010 | Visits: 965

HTML Objects HTML Objects is a Perl module library for turning HTML tags into Perl objects. HTML Objects allows Web pages to be manipulated as a data structure rather than text. Once manipulation is done, the entire page is generated via depth-first recursion.. Platforms: *nix

License: Freeware Size: 25.6 KB Download (101): HTML Objects Download

Added: September 08, 2010 | Visits: 1.360

HTML::Scrubber HTML::Scrubber is a Perl extension for scrubbing/sanitizing html. SYNOPSIS #!/usr/bin/perl -w use HTML::Scrubber; use strict; # my $html = q[ BAD { background: #666; color: #666;} alert(Hello, I am EVIL!); a => link br => b => bold u => UNDERLINE ]; # my $scrubber =... Platforms: *nix

License: Freeware Size: 17.41 KB Download (99): HTML::Scrubber Download

Added: April 22, 2010 | Visits: 1.115

Oak::Web::HTML::B Oak::Web::HTML::B is B HTML Tag. HIERARCHY Oak::Object Oak::Persistent Oak::Component Oak::Web::Visual Oak::Web::HTML::PhraseElement Oak::Web::HTML::B PROPERTIES The Oak::Web::HTML::B object has the following properties: caption The text inside the tag All other defined by W3C.... Platforms: *nix

License: Freeware Size: 21.5 KB Download (106): Oak::Web::HTML::B Download

Added: November 12, 2010 | Visits: 1.106

Oak::Web::HTML::A Oak::Web::HTML::A is a HTML tag (Container). A Container to hold objects inside an A tag. Perl Oak Component Tree - Web Interface Components. This package brings the Web Component library, used to create web interfaces to your applications. See also the Forest Web Application Builder, a tool... Platforms: *nix

License: Freeware Size: 21.5 KB Download (95): Oak::Web::HTML::A Download

Added: March 27, 2010 | Visits: 1.050

HTML::Template::Set HTML::Template::Set is a HTML::Template extension that adds set support. SYNOPSIS in your HTML: < TMPL_SET NAME="handler" >apples_to_oranges< /TMPL_SET > < TMPL_SET NAME="title" >Apples Are Green< /TMPL_SET > < HTML > < HEAD > < TITLE >< TMPL_VAR NAME="title" >< /TITLE > < /HEAD > <... Platforms: *nix

License: Freeware Size: 9.22 KB Download (94): HTML::Template::Set Download

Added: October 12, 2010 | Visits: 1.388

HTML::WikiConverter::MediaWiki HTML::WikiConverter::MediaWiki is a Perl module used to convert HTML to MediaWiki markup. SYNOPSIS use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => MediaWiki ); print $wc->html2wiki( $html ); This module contains rules for converting HTML into MediaWiki markup. See... Platforms: *nix

License: Freeware Size: 11.26 KB Download (99): HTML::WikiConverter::MediaWiki Download

Added: July 17, 2010 | Visits: 916

HTML::WikiConverter::Dialects HTML::WikiConverter::Dialects is a Perl module which contains a tutorial on how to add a dialect. SYNOPSIS # In your dialect module: package HTML::WikiConverter::MySlimWiki; use HTML::WikiConverter -dialect; rule b => { start => **, end => ** }; rule i => { start => //, end => // };... Platforms: *nix

License: Freeware Size: 34.82 KB Download (91): HTML::WikiConverter::Dialects Download

Added: February 03, 2010 | Visits: 1.184

HTML::WikiConverter::Markdown HTML::WikiConverter::Markdown is a Perl module to convert HTML to Markdown markup. SYNOPSIS use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => Markdown ); print $wc->html2wiki( $html ); This module contains rules for converting HTML into Markdown markup. You should not... Platforms: *nix

License: Freeware Size: 8.19 KB Download (109): HTML::WikiConverter::Markdown Download

Added: February 09, 2010 | Visits: 980

HTML::WikiConverter::Oddmuse HTML::WikiConverter::Oddmuse is a Perl module that can convert HTML to Oddmuse markup. SYNOPSIS use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => Oddmuse ); print $wc->html2wiki( $html ); This module contains rules for converting HTML into Oddmuse markup. This dialect... Platforms: *nix

License: Freeware Size: 6.14 KB Download (96): HTML::WikiConverter::Oddmuse Download

Added: February 25, 2010 | Visits: 1.464

HTML::WikiConverter HTML::WikiConverter is a Perl module that can convert HTML to wiki markup. SYNOPSIS use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => MediaWiki ); # Provide HTML directly print $wc->html2wiki( $html ); # ...which is the same as print $wc->html2wiki( html => $html );... Platforms: *nix

License: Freeware Size: 34.82 KB Download (102): HTML::WikiConverter Download

Added: January 18, 2010 | Visits: 1.190

HTML::WikiConverter::Normalizer SYNOPSIS use HTML::TreeBuilder; use HTML::WikiConverter::Normalizer; my $tree = new HTML::TreeBuilder(); $tree->parse( text ); my $norm = new HTML::WikiConverter::Normalizer(); $norm->normalize($tree); # Roughly gives " text " print $tree->as_HTML(); HTML::WikiConverter dialects... Platforms: *nix

License: Freeware Size: 34.82 KB Download (102): HTML::WikiConverter::Normalizer Download

Added: May 02, 2010 | Visits: 1.290

HTML::Sanitizer HTML::Sanitizer is a HTML Sanitizer. SYNOPSIS my $safe = new HTML::Sanitizer; $safe->permit_only( qw/ strong em /, a => { href => qr/^(?:http|ftp):/, title => 1, }, img => { src => qr/^(?:http|ftp):/, alt => 1, }, b => HTML::Element->new(strong), ); $sanitized =... Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): HTML::Sanitizer Download

Added: October 24, 2010 | Visits: 1.104

HTML Parser HTMLParser is a super-fast real-time parser for real-world HTML. What has attracted most developers to HTMLParser has been its simplicity in design, speed and ability to handle streaming real-world html. The two fundamental use-cases that are handled by the parser are extraction and... Platforms: *nix

License: Freeware Size: 4.2 MB Download (98): HTML Parser Download

Added: March 12, 2010 | Visits: 1.350

Template::Magic::HTML Template::Magic::HTML Perl module contains HTML handlers for Template::Magic used in a HTML environment. SYNOPSIS $tm = new Template::Magic::HTML ; # that means $tm = new Template::Magic markers => HTML , value_handlers => HTML ; # that explicitly means $tm = new Template::Magic... Platforms: *nix

License: Freeware Size: 46.08 KB Download (105): Template::Magic::HTML Download

Added: March 21, 2010 | Visits: 833

HTML::TableTiler HTML::TableTiler can easily generates complex graphic styled HTML tables. HTML::TableTiler uses a minimum HTML table as a tile to generate a complete HTML table from a bidimensional array of data. It can easily produce simple or complex graphic styled tables with minimum effort and maximum... Platforms: *nix

License: Freeware Size: 8.19 KB Download (106): HTML::TableTiler Download

Added: February 24, 2010 | Visits: 1.140

HTML QuickForm Wizard HTML QuickForm Wizard project implements a wizard whose pages and flows are described by a FSM (finite state machine). The next page is determined from the actual page, the "internal" state of the wizard, and a set of rules. The list of states (pages) and ruleset are described using an XML file... Platforms: *nix

License: Freeware Size: 37.89 KB Download (101): HTML QuickForm Wizard Download

Added: September 22, 2010 | Visits: 2.407

HTML::Widgets::Index HTML::Widgets::Index is a Perl module for creating web indexes and menus. This module renders the index of a document tree using the data stored in a MySQL database generated by anxova. It has a flexible set of render options that gives the webmaster many options on the menu item layout.... Platforms: *nix

License: Freeware Size: 65.54 KB Download (103): HTML::Widgets::Index Download

< 1 2 3 4 5 >