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

..03-May-2022-

lib/HTML/WikiConverter/H14-May-2008-309130

t/H14-May-2008-320221

ChangesH A D14-May-2008301 129

INSTALLH A D07-May-200851 44

LICENSEH A D14-May-2008112 32

MANIFESTH A D14-May-2008206 1514

META.ymlH A D14-May-2008602 1817

Makefile.PLH A D14-May-2008701 2119

READMEH A D14-May-20081.4 KiB6335

README

1HTML-WikiConverter-GoogleCode
2
3Module HTML::WikiConverter::GoogleCode adds the wiki dialect used by Google Code
4project hosting to HTML::WikiConverter.  This module is useful when converting
5HTML to Google Code wiki markup.
6
7
8SYNOPSIS
9
10Converting HTML to wiki markup is easy:
11
12  use HTML::WikiConverter;
13  my $wc = new HTML::WikiConverter( dialect => 'GoogleCode' );
14  print $wc->html2wiki( $html );
15
16Or from the command line:
17
18  % html2wiki --dialect GoogleCode input.html > output.wiki
19
20
21CHANGES IN 0.12
22
23    * Added a LICENSE file
24
25
26INSTALLATION
27
28To install this module, run the following commands:
29
30    perl Makefile.PL
31    make
32    make test
33    make install
34
35
36SUPPORT AND DOCUMENTATION
37
38After installing, you can find documentation for this module with the perldoc command.
39
40    perldoc HTML::WikiConverter::GoogleCode
41
42You can also look for information at:
43
44    Search CPAN
45        http://search.cpan.org/dist/HTML-WikiConverter-GoogleCode
46
47    CPAN Request Tracker:
48        http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-GoogleCode
49
50    AnnoCPAN, annotated CPAN documentation:
51        http://annocpan.org/dist/HTML-WikiConverter-GoogleCode
52
53    CPAN Ratings:
54        http://cpanratings.perl.org/d/HTML-WikiConverter-GoogleCode
55
56
57COPYRIGHT AND LICENCE
58
59Copyright (C) 2008 Marty Kube
60
61This program is free software; you can redistribute it and/or modify it
62under the same terms as Perl itself.
63