aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-05-05 05:10:00 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-05-05 05:10:00 +0000
commit157df8591f03ade7504ad732446f125ae8609b05 (patch)
tree83e86e9ecfce04df964fd698dab9df3a2255393a /doc
parent13f8a835a0b59de43316674e2122f0bbf3d9ef3a (diff)
downloadikiwiki-157df8591f03ade7504ad732446f125ae8609b05.tar
ikiwiki-157df8591f03ade7504ad732446f125ae8609b05.tar.gz
rename the "render" hook to "change", which is clearer
Diffstat (limited to 'doc')
-rw-r--r--doc/plugins/write.mdwn15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/plugins/write.mdwn b/doc/plugins/write.mdwn
index 969862842..ae2f8b904 100644
--- a/doc/plugins/write.mdwn
+++ b/doc/plugins/write.mdwn
@@ -49,10 +49,11 @@ return the error message as the output of the plugin.
### Html issues
-Note that if [[HTMLSanitization]] is enabled, html in
+Note that if [[HTMLSanitization]] is enabled, html in
[[PreProcessorDirective]] output is sanitised, which may limit what your
plugin can do. Also, the rest of the page content is not in html format at
-preprocessor time. Text output by a preprocessor directive will be passed through markdown along with the rest of the page.
+preprocessor time. Text output by a preprocessor directive will be passed
+through markdown along with the rest of the page.
## Other types of hooks
@@ -83,13 +84,13 @@ make arbitrary changes. The function is passed named parameters `page` and
Each time a page or pages is removed from the wiki, the referenced function
is called, and passed the names of the source files that were removed.
-### render
+### change
- IkiWiki::hook(type => "render", id => "foo", call => \&render);
+ IkiWiki::hook(type => "change", id => "foo", call => \&render);
-Each time ikiwiki renders a change or addition (but not deletion) of a page
-to the wiki, the referenced function is called, and passed the name of the
-source file that was rendered.
+Each time ikiwiki renders a change or addition (but not deletion) to the
+wiki, the referenced function is called, and passed the names of the
+source files that were rendered.
### cgi