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

..03-May-2022-

lib/HTML/WikiConverter/H26-Nov-2007-233109

t/H26-Nov-2007-622569

ChangesH A D26-Nov-2007524 2419

MANIFESTH A D26-Nov-2007193 1312

META.ymlH A D26-Nov-2007415 1311

Makefile.PLH A D26-Nov-2007593 1816

READMEH A D26-Nov-20071.6 KiB6942

README

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