home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / Text2HTML.pm < prev    next >
Encoding:
Perl POD Document  |  2002-03-21  |  479 b   |  32 lines

  1. package DocSet::Doc::Text2HTML;
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. use vars qw(@ISA);
  7. require DocSet::Source::Text;
  8. @ISA = qw(DocSet::Source::Text);
  9.  
  10. ###########################
  11. ### not implemented yet ###
  12. ###########################
  13.  
  14. 1;
  15. __END__
  16.  
  17. =head1 NAME
  18.  
  19. C<DocSet::Doc::Text2HTML> - Text source to HTML target converter
  20.  
  21. =head1 SYNOPSIS
  22.  
  23.  
  24.  
  25. =head1 DESCRIPTION
  26.  
  27. Implements an C<DocSet::Doc> sub-class which converts a source
  28. document in Text, into an output document in HTML.
  29.  
  30.  
  31. =cut
  32.