ikiwiki/IkiWiki/Plugin/color.pm

77 lines
2.0 KiB
Perl
Raw Normal View History

2008-08-26 19:22:34 +02:00
#!/usr/bin/perl
# Ikiwiki text colouring plugin
# Paweł Tęcza <ptecza@net.icm.edu.pl>
package IkiWiki::Plugin::color;
use warnings;
use strict;
use IkiWiki 3.00;
2008-08-26 19:22:34 +02:00
sub import {
2008-08-26 19:22:34 +02:00
hook(type => "preprocess", id => "color", call => \&preprocess);
hook(type => "format", id => "color", call => \&format);
hook(type => "getsetup", id => "color", call => \&getsetup);
}
sub getsetup () {
return
plugin => {
safe => 1,
rebuild => undef,
2010-02-12 12:35:52 +01:00
section => "widget",
},
}
2008-08-26 19:22:34 +02:00
sub preserve_style ($$$) {
2008-08-26 19:22:34 +02:00
my $foreground = shift;
my $background = shift;
my $text = shift;
$foreground = defined $foreground ? lc($foreground) : '';
$background = defined $background ? lc($background) : '';
$text = '' unless (defined $text);
# Validate colors. Only color name or color code are valid.
$foreground = '' unless ($foreground &&
($foreground =~ /^[a-z]+$/ || $foreground =~ /^#[0-9a-f]{3,6}$/));
$background = '' unless ($background &&
($background =~ /^[a-z]+$/ || $background =~ /^#[0-9a-f]{3,6}$/));
my $preserved = '';
$preserved .= '<span class="color"><span value="';
2008-08-26 19:22:34 +02:00
$preserved .= 'color: '.$foreground if ($foreground);
$preserved .= '; ' if ($foreground && $background);
$preserved .= 'background-color: '.$background if ($background);
$preserved .= '"></span>'.$text.'</span>';
2008-08-26 19:22:34 +02:00
return $preserved;
}
2008-08-26 19:22:34 +02:00
sub replace_preserved_style ($) {
2008-08-26 19:22:34 +02:00
my $content = shift;
$content =~ s!<span class="color">\s*<span value="((color: ([a-z]+|\#[0-9a-f]{3,6})?)?((; )?(background-color: ([a-z]+|\#[0-9a-f]{3,6})?)?)?)">\s*</span>!<span class="color" style="$1">!g;
2008-08-26 19:22:34 +02:00
return $content;
}
2008-08-26 19:22:34 +02:00
sub preprocess (@) {
2008-08-26 19:22:34 +02:00
my %params = @_;
return preserve_style($params{foreground}, $params{background},
# Preprocess the text to expand any preprocessor directives
# embedded inside it.
IkiWiki::preprocess($params{page}, $params{destpage},
$params{text}));
}
2008-08-26 19:22:34 +02:00
sub format (@) {
2008-08-26 19:22:34 +02:00
my %params = @_;
$params{content} = replace_preserved_style($params{content});
return $params{content};
}
2008-08-26 19:22:34 +02:00
1