diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-05 21:08:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-05 21:10:40 -0400 |
commit | f52f395437a946478da2a126015c05e3e0afdc1f (patch) | |
tree | f98f451642691cc9d6aef6a0a7e524347eb7c72e /doc/templates.mdwn | |
parent | 11937595687df86aa93502d2e895f747a6262c4c (diff) | |
download | ikiwiki-f52f395437a946478da2a126015c05e3e0afdc1f.tar ikiwiki-f52f395437a946478da2a126015c05e3e0afdc1f.tar.gz |
consistently drop NAME= in templates
also add template syntax smoke test
Diffstat (limited to 'doc/templates.mdwn')
-rw-r--r-- | doc/templates.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/templates.mdwn b/doc/templates.mdwn index 2444cf14d..8f6561fcf 100644 --- a/doc/templates.mdwn +++ b/doc/templates.mdwn @@ -12,9 +12,9 @@ easy to learn. All you really need to know to modify templates is this: * To insert the value of a template variable, use `<TMPL_VAR variable>`. * To make a block of text conditional on a variable being set use - `<TMPL_IF NAME="variable">text</TMPL_IF>`. + `<TMPL_IF variable>text</TMPL_IF>`. * To use one block of text if a variable is set and a second if it's not, - use `<TMPL_IF NAME="variable">text<TMPL_ELSE>other text</TMPL_IF>` + use `<TMPL_IF variable>text<TMPL_ELSE>other text</TMPL_IF>` [[!if test="enabled(template)" then=""" ## template pages |