NAME
    HTML::WikiConverter - An HTML-to-wiki markup converter

SYNOPSIS

    use HTML::WikiConverter;

    my $wc = new HTML::WikiConverter(
      html => $html_source,
      dialect => 'MediaWiki'
    );

    print $wc->output;

DESCRIPTION

    HTML::WikiConverter converts HTML source to wiki markup in a
    variety of different wiki dialects, including MediaWiki (the
    wiki engine for Wikipedia.org). A sample web interface is
    available at

      http://diberri.dyndns.org/html2wiki.html

    for those who would like to try the module before installing.

INSTALLATION

    The simplest way to install is via the CPAN shell:

      cpan> install HTML::WikiConverter

    The next best thing is:

      > perl Makefile.PL
      > make
      > make test
      > make install

    Installing wiki dialects is similar. For example, to
    install the MediaWiki dialect:

      cpan> install HTML::WikiConverter::Dialect::MediaWiki

AUTHOR
    David J. Iberri <diberri@yahoo.com>

COPYRIGHT
    Copyright (c) 2004 David J. Iberri

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

    See http://www.perl.com/perl/misc/Artistic.html

