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

..03-May-2022-

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

t/H11-Jan-2006-350303

ChangesH A D10-Jan-2006150 75

MANIFESTH A D10-Jan-2006195 1312

META.ymlH A D11-Jan-2006416 1311

Makefile.PLH A D10-Jan-2006597 1816

READMEH A D10-Jan-20061.8 KiB7646

README

1HTML::WikiConverter::WakkaWiki version 0.50
2===========================================
3
4HTML::WikiConverter::WakkaWiki adds the WakkaWiki dialect to
5HTML::WikiConverter allowing the conversion of HTML to WakkaWiki
6markup.
7
8SYNOPSIS
9
10Converting HTML to wiki markup is easy:
11
12  use HTML::WikiConverter;
13  my $wc = new HTML::WikiConverter( dialect => 'WakkaWiki' );
14  print $wc->html2wiki( $html );
15
16Or from the command line:
17
18  % html2wiki --dialect WakkaWiki 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::WakkaWiki 0.50.
27
28Prior versions of HTML::WikiConverter supported the WakkaWiki 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  * WakkaWiki 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::WakkaWiki
55
56You can also look for information at:
57
58    Search CPAN
59        http://search.cpan.org/dist/HTML-WikiConverter-WakkaWiki
60
61    CPAN Request Tracker:
62        http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-WakkaWiki
63
64    AnnoCPAN, annotated CPAN documentation:
65        http://annocpan.org/dist/HTML-WikiConverter-WakkaWiki
66
67    CPAN Ratings:
68        http://cpanratings.perl.org/d/HTML-WikiConverter-WakkaWiki
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