File: README

package info (click to toggle)
libhtml-tagtree-perl 1.03-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 977; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,290 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
HTML-TagTree version 0.02
=========================

   The philosophy of HTML::TagTree is to let you create
   one region of code with lots of business logic 
   for rendering many possible resulting HTML files/output.
   This differs from the approach of using business logic code
   to decide which HTML template (of many) to render.
   So rather than maintaining many HTML templates, you
   maintain a Perl file that does all possible customizations
   of HTML generation.

   This module strives to minimize typing. Object treeing is
   just a simple method call, eg:
      $body->h1->b->i('This is a bold, italic heading');

   HTML::TagTree removes the worries of making simple HTML syntax
   errors such as no matching closing tag for an open tag.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  blah blah blah

COPYRIGHT AND LICENCE

Put the correct copyright and licence information here.

Copyright (C) 2011 by daniel debrito

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
at your option, any later version of Perl 5 you may have available.