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

..03-May-2022-

lib/HTML/WikiConverter/H07-Jun-2006-17580

t/H07-Jun-2006-513462

ChangesH A D07-Jun-2006260 129

MANIFESTH A D10-Jan-2006191 1312

META.ymlH A D07-Jun-2006413 1311

Makefile.PLH A D07-Jun-2006589 1816

READMEH A D07-Jun-20061.5 KiB6740

README

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