]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/haiku.pm
fix comment permalink to always point to comment parent page
[ikiwiki.git] / IkiWiki / Plugin / haiku.pm
index 35208e56cfcc307ba95f23555ec537d1b78859e7..fe68c6eecb039edfbac1776d4b5e1b8f23b0ccd5 100644 (file)
@@ -6,11 +6,20 @@ use warnings;
 use strict;
 use IkiWiki 2.00;
 
-sub import { #{{{
+sub import {
+       hook(type => "getsetup", id => "haiku", call => \&getsetup);
        hook(type => "preprocess", id => "haiku", call => \&preprocess);
-} # }}}
+}
 
-sub preprocess (@) { #{{{
+sub getsetup {
+       return
+               plugin => {
+                       safe => 1,
+                       rebuild => undef,
+               },
+}
+
+sub preprocess (@) {
        my %params=@_;
 
        my $haiku;
@@ -42,9 +51,9 @@ sub preprocess (@) { #{{{
        }
                
        $haiku=~s/^\s+//mg;
-       $haiku=~s/\n/<br>\n/mg;
+       $haiku=~s/\n/<br \/>\n/mg;
        
-       return "\n\n<blockquote>$haiku</blockquote>\n\n";
-} # }}}
+       return "\n\n<blockquote><p>$haiku</p></blockquote>\n\n";
+}
 
 1