HTML::WikiConverter version 0.40
================================

HTML::WikiConverter is an HTML to wiki converter capable of converting
HTML source into a variety of wiki dialects. It's aimed at folks who are
converting vanilla HTML websites into wikis.

The following dialects are supported:

  DokuWiki    Kwiki
  MediaWiki   MoinMoin
  Oddmuse     PhpWiki
  PmWiki      SnipSnap
  TikiWiki    UseMod
  WakkaWiki   WikkaWiki

SYNOPSIS

Converting HTML to wiki markup is easy:

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

Or via the command-line with the included utility:

  % html2wiki --dialect MediaWiki input.html > output.mw

There's also a web interface if you're so inclined:

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

UNICODE SUPPORT

One of the most significant changes in version 0.40 is
support for multiple encodings, e.g. Unicode.

DEPENDENCIES

  * HTML::Tree for building and manipulating HTML trees
  * HTML::Entities for encoding HTML entities
  * URI for handling URIs in links

CHANGES IN VERSION 0.40

  * (bug 13561) support multiple encodings with 'encoding' attribute
  * (bug 13106) rename DocuWiki to DokuWiki
  * (bug 13167) PmWiki now handles <a name="anchor">
  * (bug 13171) PmWiki inline style rules fixed
  * (bug 14274) MediaWiki better applies <nowiki> tag
  * (bug 14527) MediaWiki better handles <pre> with empty lines
  * command-line utility (html2wiki) now installs by default
  * 'wrap_in_html' is now enabled to prevent common mistakes
  * whitespace is now trimmed from end of each wiki line

COPYRIGHT

Copyright (c) 2004-2005 David J. Iberri <diberri@cpan.org>

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
