README
1Pod-Abstract
2
3Pod::Abstract provides an abstract, tree-based interface to perl POD
4documents. This allows straightforward, round-trip capable
5manipulation of POD documents, hence allowing features to be added to
6POD to support your programming activities without having to write a
7whole POD processor.
8
9This also allows an easy tree-based mechanism to write a Pod::<format>
10type filter.
11
12The package includes a simple, and extensible, command line utility
13called "paf" (Pod::Abstract Filter). This program can chain together
14Pod Abstract filtering operations, allowing manipulation & extraction
15of POD documents from the command line.
16
17
18INSTALLATION
19
20To install this module, run the following commands:
21
22 perl Makefile.PL
23 make
24 make test
25 make install
26
27SUPPORT AND DOCUMENTATION
28
29After installing, you can find documentation for this module with the
30perldoc command.
31
32 perldoc Pod::Abstract
33 perldoc /usr/bin/paf
34
35COPYRIGHT AND LICENCE
36
37Copyright (C) 2009 Ben Lilburne
38
39This program is free software; you can redistribute it and/or modify it
40under the same terms as Perl itself.
41
42