]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/tag.pm
* Patch from James Westby to support podcasting, photoblogging, vidcasting,
[ikiwiki.git] / IkiWiki / Plugin / tag.pm
index 7a1be6bec6b983c1ec8abb332d9a197df08a26cc..6d22c49fd441183f420878884b072c686d5d1dc3 100644 (file)
@@ -10,7 +10,7 @@ my %tags;
 
 sub import { #{{{
        hook(type => "getopt", id => "tag", call => \&getopt);
-       hook(type => "preprocess", id => "tag", call => \&preprocess);
+       hook(type => "preprocess", id => "tag", call => \&preprocess, scan => 1);
        hook(type => "pagetemplate", id => "tag", call => \&pagetemplate);
 } # }}}