| HTML-WikiConverter-Oddmuse documentation | Contained in the HTML-WikiConverter-Oddmuse distribution. |
HTML::WikiConverter::Oddmuse - Convert HTML to Oddmuse markup
use HTML::WikiConverter; my $wc = new HTML::WikiConverter( dialect => 'Oddmuse' ); print $wc->html2wiki( $html );
This module contains rules for converting HTML into Oddmuse markup. This dialect module supports most of Oddmuse's text formatting rules described at [1], notably:
* bold, strong, italic, emphasized, and underlined text * paragraph blocks * external images * internal and external links * unordered and ordered lists * tables [2] [1] http://www.oddmuse.org/cgi-bin/wiki/Text_Formatting_Rules [2] http://www.oddmuse.org/cgi-bin/wiki/Table_Markup_Extension
See HTML::WikiConverter for usage details.
In addition to the regular set of attributes recognized by the HTML::WikiConverter constructor, this dialect also accepts the following attributes:
Boolean indicating whether CamelCase links are enabled in the target
Oddmuse installation. This corresponds to Oddmuse's $WikiLinks
configuration parameter. Enabling CamelCase links will turn HTML like
this:
<p><a href="/wiki/CamelCase">CamelCase</a> links are fun.</p>
into this Oddmuse markup:
CamelCase links are fun.
Disabling CamelCase links (the default) would convert that HTML into
[[CamelCase]] links are fun.
David J. Iberri, <diberri at cpan.org>
Please report any bugs or feature requests to
bug-html-wikiconverter-oddmuse at rt.cpan.org, or through the web
interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-WikiConverter-Oddmuse.
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::Oddmuse
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-WikiConverter-Oddmuse
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-Oddmuse documentation | Contained in the HTML-WikiConverter-Oddmuse distribution. |
package HTML::WikiConverter::Oddmuse; use warnings; use strict; use base 'HTML::WikiConverter'; our $VERSION = '0.52'; use Params::Validate ':types';
sub attributes { { camel_case => { default => 0, type => BOOLEAN } } } sub rules { my %rules = ( b => { start => '*', end => '*' }, strong => { alias => 'b' }, i => { start => '/', end => '/' }, em => { start => '~', end => '~' }, u => { start => '_', end => '_' }, p => { block => 1, trim => 'both', line_format => 'multi' }, img => { replace => \&_image }, a => { replace => \&_link }, ul => { line_format => 'multi', block => 1 }, ol => { alias => 'ul' }, li => { start => \&_li_start, trim => 'leading' }, # http://www.oddmuse.org/cgi-bin/wiki/Table_Markup_Extension table => { block => 1, line_format => 'multi' }, tr => { line_format => 'single', end => "||\n" }, td => { start => \&_td_start, end => \&_td_end, trim => 'both' }, th => { alias => 'td' }, h1 => { start => '=', end => '=', block => 1, line_format => 'single' }, h2 => { start => '==', end => '==', block => 1, line_format => 'single' }, h3 => { start => '===', end => '===', block => 1, line_format => 'single' }, h4 => { start => '====', end => '====', block => 1, line_format => 'single' }, h5 => { start => '=====', end => '=====', block => 1, line_format => 'single' }, h6 => { start => '======', end => '======', block => 1, line_format => 'single' }, ); return \%rules; } sub _td_start { my( $self, $node, $rules ) = @_; my $align = $node->attr('align') || 'left'; my $colspan = $node->attr('colspan') || 1; my $prefix = ( '||' ) x $colspan; my $pad_for_align = $align eq 'left' ? '' : ' '; return $prefix.$pad_for_align; } sub _td_end { my( $self, $node, $rules ) = @_; my $align = $node->attr('align') || 'left'; return $align eq 'right' ? '' : ' '; } 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) ) { $title =~ s/_/ /g; return $text if $self->camel_case and lc $title eq lc $text and $self->is_camel_case($text); return "[[$text]]" if lc $text eq lc $title; return "[[$title|$text]]"; } else { return $url if $url eq $text; return "[$url $text]"; } } sub _image { my( $self, $node, $rules ) = @_; my $src = $node->attr('src') || ''; return '' unless $src; # Could do something with an 'image_uri' option to handle local images return $src; } sub _li_start { my( $self, $node, $rules ) = @_; my @parent_lists = $node->look_up( _tag => qr/ul|ol/ ); my $prefix = ('*') x @parent_lists; return "\n$prefix "; }
1;