2 # Ikiwiki text colouring plugin
3 # Paweł‚ Tęcza <ptecza@net.icm.edu.pl>
4 package IkiWiki::Plugin::color;
11 hook(type => "preprocess", id => "color", call => \&preprocess);
12 hook(type => "format", id => "color", call => \&format);
13 hook(type => "getsetup", id => "color", call => \&getsetup);
24 sub preserve_style ($$$) {
25 my $foreground = shift;
26 my $background = shift;
29 $foreground = defined $foreground ? lc($foreground) : '';
30 $background = defined $background ? lc($background) : '';
31 $text = '' unless (defined $text);
33 # Validate colors. Only color name or color code are valid.
34 $foreground = '' unless ($foreground &&
35 ($foreground =~ /^[a-z]+$/ || $foreground =~ /^#[0-9a-f]{3,6}$/));
36 $background = '' unless ($background &&
37 ($background =~ /^[a-z]+$/ || $background =~ /^#[0-9a-f]{3,6}$/));
40 $preserved .= '<span class="color">';
41 $preserved .= 'color: '.$foreground if ($foreground);
42 $preserved .= '; ' if ($foreground && $background);
43 $preserved .= 'background-color: '.$background if ($background);
44 $preserved .= '</span>';
45 $preserved .= '<span class="colorend">'.$text.'</span>';
51 sub replace_preserved_style ($) {
54 $content =~ s!<span class="color">((color: ([a-z]+|\#[0-9a-f]{3,6})?)?((; )?(background-color: ([a-z]+|\#[0-9a-f]{3,6})?)?)?)</span>!<span class="color" style="$1">!g;
55 $content =~ s!<span class="colorend">!!g;
63 # Preprocess the text to expand any preprocessor directives
65 $params{text} = IkiWiki::preprocess($params{page}, $params{destpage},
66 IkiWiki::filter($params{page}, $params{destpage}, $params{text}));
68 return preserve_style($params{foreground}, $params{background}, $params{text});
74 $params{content} = replace_preserved_style($params{content});
75 return $params{content};