ikiwiki/IkiWiki/Plugin/testpagespec.pm

24 lines
453 B
Perl
Raw Normal View History

#!/usr/bin/perl
package IkiWiki::Plugin::testpagespec;
use warnings;
use strict;
use IkiWiki 2.00;
sub import { #{{{
hook(type => "preprocess", id => "testpagespec", call => \&preprocess);
} # }}}
sub preprocess (@) { #{{{
my %params=@_;
add_depends($params{page}, $params{pagespec});
my $ret=pagespec_match($params{match}, $params{pagespec},
location => $params{page});
return $ret if ! $ret;
return "the pagespec matches";
} # }}}
1