Warning: Declaration of action_plugin_stratatemplatery::register(Doku_Event_Handler &$controller) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /usr/home/nielsvantol/public_html/dragonseye/rpwiki/lib/plugins/stratatemplatery/action.php on line 24

Warning: Declaration of action_plugin_editx::register(&$contr) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /usr/home/nielsvantol/public_html/dragonseye/rpwiki/lib/plugins/editx/action.php on line 18

Warning: Declaration of action_plugin_templatery::register(Doku_Event_Handler &$controller) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /usr/home/nielsvantol/public_html/dragonseye/rpwiki/lib/plugins/templatery/action.php on line 17

Warning: Cannot modify header information - headers already sent by (output started at /usr/home/nielsvantol/public_html/dragonseye/rpwiki/lib/plugins/stratatemplatery/action.php:35) in /usr/home/nielsvantol/public_html/dragonseye/rpwiki/inc/auth.php on line 430

Warning: Cannot modify header information - headers already sent by (output started at /usr/home/nielsvantol/public_html/dragonseye/rpwiki/lib/plugins/stratatemplatery/action.php:35) in /usr/home/nielsvantol/public_html/dragonseye/rpwiki/inc/actions.php on line 38
Templatery [Dragonseye RP Wiki]

User Tools

Site Tools


wiki:templatery

Templatery

The templatery plugin offers the ability to write a template, and have it included in other pages with filled in fields.

Example

The anatomy of a template

Defining a template is very simple:

<template example>

This starts a new template. The template can optionally have a name ('example' in this case).

Hello, my name is: @@name@@

A piece of text with a field called 'name'.

<if organisation>
I'm a member of @@organisation@@.
</if>

A conditional piece of text. If the field 'organisation' is present, this will be displayed. If the field is not defined, the whole piece won't be used.

</template>

Finishes the template.

The actual template

The template will end up looking like this:

example

Hello, my name is: Name

With organisation

I'm a member of Organisation.

Using the template

You use the template with

{{template>wiki:templatery#example|name=Brend|organisation=University of Twente}}

This tells the wiki to use the template wiki:templatery#example.

If you do not have a full name, but something like {{template>test}} the wiki will look in the template namespace for the template.

Looks like this

Hello, my name is: Brend

I'm a member of University of Twente.

Using parameters

A template can have both named and numbered parameters.

Numbered parameters

Parameters can be numbered:

numbered

0 = 0, 1 = 1

0 = Alpha , 1 = beta

You can freely mix numbered and named parameters.

Default values

Parameters can be numbered:

defaults

a » Default value for a & B » Default value for b

Alpha & Default value for b

Conditionals

You can have conditional pieces of template:

conditionals
With A

Text if a is set. a = a

Without A

Text if a is not set. a = A

With A set

Text if a is set. a = Alpha

With A unset

Text if a is not set. a =

Inline Conditionals

Conditionals will be block-level if possible and will switch to inline if necessary.

This is useful, for example, if you have them in a list item.

You can force a conditional to be inline by prefixing it with a *.

inlineconditionals
  • Test with With Aa

Some With BB value of B.

  • Test with strawberries

Some tomato value of B.

Templates in Templates

You can include a template in a template. This allows you to reuse templates.

If you dot this, you use {{template>name of template|inside=outside}}. The variables assignments are used to remap variables from outside the template to inside the template. Any variable not mentioned is available under it's old name.

recursion

0 = 0

With 1

wiki:templatery#recursion : 1 → 0, 2 → 1, 3 → 2, 4 → 3

0 = Alpha

0 = Beta

0 = Gamma

0 = Delta

wiki/templatery.txt · Last modified: 2012/11/27 15:12 by brend