]> scripts.mit.edu Git - www/ikiwiki.git/blobdiff - doc/plugins/write.mdwn
web commit by http://vibrog.myopenid.com/
[www/ikiwiki.git] / doc / plugins / write.mdwn
index 410d49aaf9ee09fd044b877c84730e5ecbac193a..ea2d006300db5d1cfb5e5a70f9030171f9324b07 100644 (file)
@@ -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.
@@ -512,7 +516,7 @@ version of the file. In particular, in preview mode, this should still be
 called even if the file isn't going to be written to during the preview.
 
 Ikiwiki uses this information to automatically clean up rendered files when
-the page that rendered them goes away or is changes to no longer render
+the page that rendered them goes away or is changed to no longer render
 them. will_render also does a few important security checks.
 
 #### `pagetype($)`