]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/more.pm
Renamed postscan hook to indexhtml, to reflect its changed position.
[ikiwiki.git] / IkiWiki / Plugin / more.pm
index 6a34682ba61c9043ffff65343acd035e018cce25..266c8e1d0937dc9aefc677d536cc26a8d18e66c7 100644 (file)
@@ -3,15 +3,25 @@ package IkiWiki::Plugin::more;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 
 my $linktext = gettext("more");
 
-sub import { #{{{
-       hook(type => "preprocess",  id => "more", call => \&preprocess);
-} # }}}
+sub import {
+       hook(type => "getsetup", id => "more", call => \&getsetup);
+       hook(type => "preprocess", id => "more", call => \&preprocess);
+}
+
+sub getsetup () {
+       return
+               plugin => {
+                       safe => 1,
+                       rebuild => undef,
+                       section => "widget",
+               },
+}
 
-sub preprocess (@) { #{{{
+sub preprocess (@) {
        my %params=@_;
 
        $params{linktext} = $linktext unless defined $params{linktext};
@@ -24,7 +34,7 @@ sub preprocess (@) { #{{{
        }
        else {
                $params{text}=IkiWiki::preprocess($params{page}, $params{destpage},
-                       IkiWiki::filter($params{page}, $params{text}));
+                       IkiWiki::filter($params{page}, $params{destpage}, $params{text}));
                return "<a name=\"more\"></a>\n\n".$params{text};
        }
 }