2 # haiku generator plugin
3 package IkiWiki::Plugin::haiku;
10 IkiWiki::hook(type => "preprocess", id => "haiku",
11 call => \&preprocess);
14 sub preprocess (@) { #{{{
22 No darting, subtle haiku.
26 no, wait, that's not quite it
30 no code, count Five-Seven-Five
35 $haiku=$canned[rand @canned];
38 $haiku=Coy::with_haiku($params{hint} ? $params{hint} : $params{page});
41 $haiku=~s/\s+-----\n//s;
42 $haiku=~s/\s+-----.*//s;
46 $haiku=~s/\n/<br>\n/mg;
48 return "\n\n<blockquote>$haiku</blockquote>\n\n";