]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/edittemplate.mdwn
* Use forcebaseurl to make page previews be displayed with the html base
[ikiwiki.git] / doc / plugins / edittemplate.mdwn
1 [[template id=plugin name=edittemplate author="[[Joey]]"]]
2 [[tag type/useful]]
3
4 This plugin allows registering template pages, that provide default
5 content for new pages created using the web frontend. To register a
6 template, insert a [[PreprocessorDirective]] on some other page.
7
8         \[[edittemplate template="bugtemplate" match="bugs/*"]]
9
10 In the above example, the page named "bugtemplate" is registered as a
11 template to be used when any page named "bugs/*" is created.
12
13 Often the template page contains a simple skeleton for a particular type of
14 page. For the bug report pages in the above example, it might look
15 something like:
16
17         Package: 
18         Version: 
19         Reproducible: y/n
20         Details:
21
22 The template page can also contain [[cpan HTML::Template]] directives,
23 similar to other ikiwiki [[templates]]. Currently only one variable is
24 set: `<TMPL_VAR name>` is replaced with the name of the page being
25 created.
26
27 ----
28
29 It's generally not a good idea to put the `edittemplate` directive in
30 the template page itself, since the directive would then be included as
31 part of the template on new pages, which would then in turn be registered
32 as templates. If multiple pages are registered as templates for a new page,
33 an arbitrary one is chosen, so that could get confusing.