summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-21 00:13:51 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-21 00:13:51 +0000
commit67b782a346171242e94c6621d14f1cd9bd671909 (patch)
tree5eee1d859e5158dba9c69eb34d2be036b4133a19 /doc
parent8607c3ab851414932202724ceff22d9e4304601e (diff)
make valid html
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/different_search_engine.mdwn12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/todo/different_search_engine.mdwn b/doc/todo/different_search_engine.mdwn
index 7014acd33..81cb04539 100644
--- a/doc/todo/different_search_engine.mdwn
+++ b/doc/todo/different_search_engine.mdwn
@@ -66,20 +66,20 @@ Index: IkiWiki/Plugin/search.pm
+
sub import { #{{{
- hook(type => "getopt", id => "hyperestraier",
-- call => \&getopt);
+- call => \&amp;getopt);
- hook(type => "checkconfig", id => "hyperestraier",
+ hook(type => "checkconfig", id => "plucene",
- call => \&checkconfig);
+ call => \&amp;checkconfig);
- hook(type => "pagetemplate", id => "hyperestraier",
-- call => \&pagetemplate);
+- call => \&amp;pagetemplate);
- hook(type => "delete", id => "hyperestraier",
+ hook(type => "delete", id => "plucene",
- call => \&delete);
+ call => \&amp;delete);
- hook(type => "change", id => "hyperestraier",
+ hook(type => "change", id => "plucene",
- call => \&change);
+ call => \&amp;change);
- hook(type => "cgi", id => "hyperestraier",
-- call => \&cgi);
+- call => \&amp;cgi);
} # }}}
-sub getopt () { #{{{