| HTML-WikiConverter-Kwiki documentation | Contained in the HTML-WikiConverter-Kwiki distribution. |
HTML::WikiConverter::Kwiki - Convert HTML to Kwiki markup
use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => 'Kwiki' ); print $wc->html2wiki( $html );
This module contains rules for converting HTML into Kwiki markup. See HTML::WikiConverter for additional usage details.
David J. Iberri, <diberri at cpan.org>
Please report any bugs or feature requests to
bug-html-wikiconverter-kwiki at rt.cpan.org, or through the web
interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-WikiConverter-Kwiki.
I will be notified, and then you'll automatically be notified of
progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc HTML::WikiConverter::Kwiki
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-Kwiki
Copyright 2006 David J. Iberri, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-WikiConverter-Kwiki documentation | Contained in the HTML-WikiConverter-Kwiki distribution. |
package HTML::WikiConverter::Kwiki; use warnings; use strict; use base 'HTML::WikiConverter'; our $VERSION = '0.51';
sub rules { my %rules = ( hr => { replace => "\n----\n" }, br => { replace => "\n" }, h1 => { start => '= ', block => 1, trim => 'both', line_format => 'single' }, h2 => { start => '== ', block => 1, trim => 'both', line_format => 'single' }, h3 => { start => '=== ', block => 1, trim => 'both', line_format => 'single' }, h4 => { start => '==== ', block => 1, trim => 'both', line_format => 'single' }, h5 => { start => '===== ', block => 1, trim => 'both', line_format => 'single' }, h6 => { start => '====== ', block => 1, trim => 'both', line_format => 'single' }, p => { block => 1, trim => 'both', line_format => 'multi' }, b => { start => '*', end => '*', line_format => 'single' }, strong => { alias => 'b' }, i => { start => '/', end => '/', line_format => 'single' }, em => { alias => 'i' }, u => { start => '_', end => '_', line_format => 'single' }, strike => { start => '-', end => '-', line_format => 'single' }, s => { alias => 'strike' }, tt => { start => '[=', end => ']', trim => 'both', line_format => 'single' }, code => { alias => 'tt' }, pre => { line_prefix => ' ', block => 1 }, a => { replace => \&_link }, img => { replace => \&_image }, table => { block => 1 }, tr => { end => " |\n", line_format => 'single' }, td => { start => '| ', end => ' ' }, th => { alias => 'td' }, ul => { line_format => 'multi', block => 1 }, ol => { alias => 'ul' }, li => { start => \&_li_start, trim => 'leading' }, ); return \%rules; } sub _li_start { my( $self, $node, $rules ) = @_; my @parent_lists = $node->look_up( _tag => qr/ul|ol/ ); my $depth = @parent_lists; my $bullet = ''; $bullet = '*' if $node->parent->tag eq 'ul'; $bullet = '0' if $node->parent->tag eq 'ol'; my $prefix = ( $bullet ) x $depth; return "\n$prefix "; } sub _link { my( $self, $node, $rules ) = @_; my $url = $node->attr('href') || ''; my $text = $self->get_elem_contents($node) || ''; if( my $title = $self->get_wiki_page($url) ) { return $title if $self->is_camel_case( $title ) and $text eq $title; return "[$title]" if $text eq $title; return "[$text http:?$title]" if $text ne $title; } else { return $url if $text eq $url; return "[$text $url]"; } } sub _image { my( $self, $node, $rules ) = @_; return $node->attr('src') || ''; } sub preprocess_node { my( $self, $node ) = @_; $self->strip_aname($node) if $node->tag eq 'a'; $self->caption2para($node) if $node->tag eq 'caption'; }
1;