add in a hack to improve the look of check marks in outline

master
joey 2006-08-19 18:27:57 +00:00
parent b058842d88
commit ac29bbdf28
1 changed files with 16 additions and 0 deletions

View File

@ -8,7 +8,23 @@ use IkiWiki;
use IPC::Open2;
sub import { #{{{
IkiWiki::hook(type => "filter", id => "otl", call => \&filter);
IkiWiki::hook(type => "htmlize", id => "otl", call => \&htmlize);
} # }}}
sub filter (@) { #{{{
my %params=@_;
# Munge up check boxes to look a little bit better. This is a hack.
my $checked=IkiWiki::htmllink($params{page}, $params{page},
"smileys/star_on.png", 0);
my $unchecked=IkiWiki::htmllink($params{page}, $params{page},
"smileys/star_off.png", 0);
$params{content}=~s/^(\s+)\[X\]\s/${1}$checked /mg;
$params{content}=~s/^(\s+)\[_\]\s/${1}$unchecked /mg;
return $params{content};
} # }}}
sub htmlize ($) { #{{{