]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/todo/different_search_engine.mdwn
make valid html
[ikiwiki.git] / doc / todo / different_search_engine.mdwn
index 7014acd3388f9f82cc2cd2f393155e283cfd1b84..81cb04539eed6541d23424785c807cfa665356f9 100644 (file)
@@ -66,20 +66,20 @@ Index: IkiWiki/Plugin/search.pm
 +
  sub import { #{{{
 -       hook(type => "getopt", id => "hyperestraier",
--               call => \&getopt);
+-               call => \&getopt);
 -       hook(type => "checkconfig", id => "hyperestraier",
 +       hook(type => "checkconfig", id => "plucene",
-                call => \&checkconfig);
+                call => \&checkconfig);
 -       hook(type => "pagetemplate", id => "hyperestraier",
--               call => \&pagetemplate);
+-               call => \&pagetemplate);
 -       hook(type => "delete", id => "hyperestraier",
 +       hook(type => "delete", id => "plucene",
-                call => \&delete);
+                call => \&delete);
 -       hook(type => "change", id => "hyperestraier",
 +       hook(type => "change", id => "plucene",
-                call => \&change);
+                call => \&change);
 -       hook(type => "cgi", id => "hyperestraier",
--               call => \&cgi);
+-               call => \&cgi);
  } # }}}
  
 -sub getopt () { #{{{