diff options
author | Kevin Chabowski <kch42@localhost.localdomain> | 2015-04-14 08:18:35 +0200 |
---|---|---|
committer | Kevin Chabowski <kch42@localhost.localdomain> | 2015-04-14 08:18:35 +0200 |
commit | 51438e2ce27d4caee69d310d27a0f2b865cdcdb8 (patch) | |
tree | 46d6cc6d2d6dc63756b321cfe6d73e708daf697a /docu | |
parent | f744b3227b116d4f7ccd7c71f8b8498ebf86d85f (diff) | |
download | ste-51438e2ce27d4caee69d310d27a0f2b865cdcdb8.tar.gz ste-51438e2ce27d4caee69d310d27a0f2b865cdcdb8.tar.bz2 ste-51438e2ce27d4caee69d310d27a0f2b865cdcdb8.zip |
Documented autoescape/raw tags
Diffstat (limited to 'docu')
-rw-r--r-- | docu/language_definition.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docu/language_definition.html b/docu/language_definition.html index a296395..08bacb7 100644 --- a/docu/language_definition.html +++ b/docu/language_definition.html @@ -4,7 +4,7 @@ <head> <title>Language definition - STE Template Engine</title> <style type="text/css" media="screen"> - code, code pre { + code, code pre, code a { font-family: monospace; background: #eee; } @@ -72,6 +72,8 @@ <a href="#stdlib">Standard Library</a> <ol> <li><a href="#stdlib_escape">ste:escape</a></li> + <li><a href="#stdlib_autoescape">ste:autoescape</a></li> + <li><a href="#stdlib_raw">ste:raw</a></li> <li><a href="#stdlib_strlen">ste:strlen</a></li> <li><a href="#stdlib_arraylen">ste:arraylen</a></li> <li><a href="#stdlib_inc">ste:inc</a></li> @@ -493,6 +495,13 @@ If the optional parameter <code>lines</code> is true (i.e. not empty), then additionally line breaks are converted to <code><br /></code>. </p> + <h3 id="stdlib_autoescape">ste:autoescape</h3> + <p>Sets the autoescaping method in its content. Autoescaping escapes all variables that are not part of an argument of an STE tag. By default, autoescaping is turned off (mode <code>none</code>) due to backwards compatibility with old versions of STE.</p> + <p>The parameter <code>mode</code> is mandatory and can be one of <code>none</code> (no escaping) or <code>html</code> (escape as HTML).</p> + + <h3 id="stdlib_raw">ste:raw</h3> + <p><code><ste:raw>...</ste:raw></code> is an alias for <code><ste:<a href="#stdlib_autoescape">autoescape</a> mode="none">...<<ste:autoescape></code> + <h3 id="stdlib_strlen">ste:strlen</h3> <p>Returns the length of then content.</p> |