• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/HTML/WikiConverter/H11-Jan-2006-16472

t/H11-Jan-2006-424377

ChangesH A D10-Jan-2006150 75

MANIFESTH A D10-Jan-2006195 1312

META.ymlH A D11-Jan-2006456 1412

Makefile.PLH A D10-Jan-2006620 1917

READMEH A D10-Jan-20061.8 KiB7646

README

1HTML::WikiConverter::WikkaWiki version 0.50
2===========================================
3
4HTML::WikiConverter::WikkaWiki adds the WikkaWiki dialect to
5HTML::WikiConverter allowing the conversion of HTML to WikkaWiki
6markup.
7
8SYNOPSIS
9
10Converting HTML to wiki markup is easy:
11
12  use HTML::WikiConverter;
13  my $wc = new HTML::WikiConverter( dialect => 'WikkaWiki' );
14  print $wc->html2wiki( $html );
15
16Or from the command line:
17
18  % html2wiki --dialect WikkaWiki input.html > output.wiki
19
20There's also a web interface if you're so inclined:
21
22  http://diberri.dyndns.org/html2wiki.html
23
24VERSION
25
26This is HTML::WikiConverter::WikkaWiki 0.50.
27
28Prior versions of HTML::WikiConverter supported the WikkaWiki dialect
29out of the box. As of 0.50, each dialect was branched off into a
30separate CPAN package.
31
32CHANGES IN 0.50
33
34  * WikkaWiki dialect now has its own CPAN package
35
36DEPENDENCIES
37
38  * HTML::WikiConverter version 0.50
39
40INSTALLATION
41
42To install this module, run the following commands:
43
44    perl Makefile.PL
45    make
46    make test
47    make install
48
49SUPPORT AND DOCUMENTATION
50
51After installing, you can find documentation for this module with the
52perldoc command.
53
54    perldoc HTML::WikiConverter::WikkaWiki
55
56You can also look for information at:
57
58    Search CPAN
59        http://search.cpan.org/dist/HTML-WikiConverter-WikkaWiki
60
61    CPAN Request Tracker:
62        http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-WikkaWiki
63
64    AnnoCPAN, annotated CPAN documentation:
65        http://annocpan.org/dist/HTML-WikiConverter-WikkaWiki
66
67    CPAN Ratings:
68        http://cpanratings.perl.org/d/HTML-WikiConverter-WikkaWiki
69
70COPYRIGHT AND LICENCE
71
72Copyright (C) 2006 David J. Iberri
73
74This program is free software; you can redistribute it and/or modify
75it under the same terms as Perl itself.
76