The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
HTML-WikiConverter-GoogleCode 

Module HTML::WikiConverter::GoogleCode adds the wiki dialect used by Google Code 
project hosting to HTML::WikiConverter.  This module is useful when converting 
HTML to Google Code wiki markup.


SYNOPSIS

Converting HTML to wiki markup is easy:

  use HTML::WikiConverter;
  my $wc = new HTML::WikiConverter( dialect => 'GoogleCode' );
  print $wc->html2wiki( $html );

Or from the command line:

  % html2wiki --dialect GoogleCode input.html > output.wiki
  

CHANGES IN 0.12

    * Added a LICENSE file


INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc HTML::WikiConverter::GoogleCode

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/HTML-WikiConverter-GoogleCode

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-GoogleCode

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/HTML-WikiConverter-GoogleCode

    CPAN Ratings:
        http://cpanratings.perl.org/d/HTML-WikiConverter-GoogleCode


COPYRIGHT AND LICENCE

Copyright (C) 2008 Marty Kube

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.