]> WPIA git - gigi.git/blobdiff - doc/TemplateSyntax.txt
ADD: more advanced domain name verification (public suffix, punycode)
[gigi.git] / doc / TemplateSyntax.txt
index 47b36e905c3d70eeb55b6afd4a732fb3c0e34924..2ed1e546074493495a2012a4fced4118ea3d2cde 100644 (file)
@@ -11,7 +11,8 @@ A template is constructed from a charstream. Everything that is not in "<?" to "
 
 - <?=$!variablename?> will output the variable "variablename" but not HTML-escaped
 - <?=s,$!variablename,My %s text?> will insert the variable "variablename" into the translated text but not HTML-escaped
-- <?=s,"some data",My %s text?> will insert "some data" into the translated text literally (not HTML-escaped)
+- <?=s,"some data",My %s text?> will insert "some data" into the translated text
+- <?=s,!"some data",My %s text?> will insert "some data" into the translated text literally (not HTML-escaped)
   
 - <? if($variable) { ?>
   Output/execute the text until "<? } ?>" only if $variable not null or Boolean.FALSE.