HTML::WikiConverter version 0.21
================================

HTML::WikiConverter is an HTML to wiki converter, capable of
converting HTML source into a variety of wiki dialects. Supported
dialects include:

  Kwiki
  MediaWiki
  MoinMoin
  PhpWiki
  PmWiki
  UseMod

Converting HTML to wiki markup is easy:

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

If you'd like to try the module out before installing, there's
a Web interface to HTML::WikiConverter available at:

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

INSTALLATION

The easiest way to install this module is via the cpan script:

  % cpan install HTML::WikiConverter

although you can always:

  % perl Makefile.PL
  % make
  % make test
  % make install

DEPENDENCIES

  HTML::TreeBuilder for building HTML syntax trees.
  URI for converting relative to absolute URIs.

CHANGES
  Version 0.21
    * Lots of documentation cleanup
    * Fixed whitespace trimming bug that broke certain markup
    * Added support for table, row, and cell attributes and internal
      links in MediaWiki dialect
    * Added wiki link support using the 'wiki_uri' argument
    * Added PmWiki dialect; http://www.pmwiki.org
  Version 0.20
    * New implementation with API changes
    * Added support for Kwiki, MediaWiki, MoinMoin, PhpWiki, and
      UseMod wiki dialects

COPYRIGHT AND LICENCE

Copyright (c) 2004-2005 David J. Iberri

This library 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
