summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2008-03-28 00:57:49 -0400
committerJoey Hess <joey@kitenet.net>2008-03-28 00:57:49 -0400
commit16f39823449c621efcfddd0fa8b75828c2bfecbc (patch)
tree832519d7b776c104c54f0f0e15b3faa73975121d /doc
parent23bdb631cbc407fdb630dd3d5b34c285b6fa4f17 (diff)
web commit by http://certifi.ca/bronson
Diffstat (limited to 'doc')
-rw-r--r--doc/plugins/write.mdwn6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/plugins/write.mdwn b/doc/plugins/write.mdwn
index b9d7c01c2..ea2d00630 100644
--- a/doc/plugins/write.mdwn
+++ b/doc/plugins/write.mdwn
@@ -92,6 +92,8 @@ function is passed no values.
### needsbuild
+
+
hook(type => "needsbuild", id => "foo", call => \&needsbuild);
This allows a plugin to manipulate the list of files that need to be
@@ -148,7 +150,8 @@ htmlize the page) along with the rest of the page.
This hook is called to convert [[WikiLinks|WikiLink]] on the page into html
links. The function is passed named parameters "page", "destpage", and
-"content". It should return the linkified content.
+"content". It should return the linkified content. Present in IkiWiki 2.40
+and later.
Plugins that implement linkify must also implement a scan hook, that scans
for the links on the page and adds them to `%links`.
@@ -160,6 +163,7 @@ for the links on the page and adds them to `%links`.
This hook is called early in the process of building the wiki, and is used
as a first pass scan of the page, to collect metadata about the page. It's
mostly used to scan the page for WikiLinks, and add them to `%links`.
+Present in IkiWiki 2.40 and later.
The function is passed named parameters "page" and "content". Its return
value is ignored.