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

..03-May-2022-

lib/HTML/WikiConverter/H07-Sep-2006-199105

t/H07-Sep-2006-546494

ChangesH A D17-Aug-2006210 118

MANIFESTH A D17-Aug-2006185 1312

META.ymlH A D07-Sep-2006459 1412

Makefile.PLH A D16-Aug-2006626 1917

READMEH A D17-Aug-20061.5 KiB6540

README

1HTML::WikiConverter::Socialtext Version 0.02
2===========================================
3
4HTML::WikiConverter::Socialtext adds the Socialtext dialect to
5HTML::WikiConverter allowing the conversion of HTML to Socialtext
6markup.
7
8SYNOPSIS
9
10Converting HTML to wiki markup is easy:
11
12  use HTML::WikiConverter;
13  my $wc = new HTML::WikiConverter( dialect => 'Socialtext' );
14  print $wc->html2wiki( $html );
15
16Or from the command line:
17
18  % html2wiki --dialect Socialtext 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
24DEPENDENCIES
25
26  * HTML::WikiConverter version 0.54
27  * URI
28
29INSTALLATION
30
31To install this module, run the following commands:
32
33    perl Makefile.PL
34    make
35    make test
36    make install
37
38SUPPORT AND DOCUMENTATION
39
40After installing, you can find documentation for this module with the
41perldoc command.
42
43    perldoc HTML::WikiConverter::Socialtext
44
45You can also look for information at:
46
47    Search CPAN
48        http://search.cpan.org/dist/HTML-WikiConverter-Socialtext
49
50    CPAN Request Tracker:
51        http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-Socialtext
52
53    AnnoCPAN, annotated CPAN documentation:
54        http://annocpan.org/dist/HTML-WikiConverter-Socialtext
55
56    CPAN Ratings:
57        http://cpanratings.perl.org/d/HTML-WikiConverter-Socialtext
58
59COPYRIGHT AND LICENCE
60
61Copyright (C) 2006 Kirsten L. Jones
62
63This program is free software; you can redistribute it and/or modify
64it under the same terms as Perl itself.
65