HTML::WikiConverter version 0.20 ================================ HTML::WikiConverter is an HTML to wiki converter, capable of converting HTML source into a variety of wiki markups (called "dialects"). The only supported dialect is MediaWiki (the wiki engine for Wikipedia), but other dialects can be added with little effort. 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 the MediaWiki dialect available at: http://diberri.dyndns.org/html2wiki-new.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. COPYRIGHT AND LICENCE Copyright (C) 2005 David 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