Rendering tags are text strings embedded in the server response file HTML source code. A rendering tag has this general form:
{{ tag }} {{ tag (parameter-list) }}
Rendering tags always begin with {{ and end with }} sequence and the tag itself is not case-sensitive, although parameters within the tag may be case-sensitive. Spaces are used in the examples to increase readability but are not required.
The optional parameter list may be formatted in a number of ways:
{{ ServiceLibs ( xmlif mylibrary ) }}
{{ SessionParms( InactivityTimeout=600, ServiceTimeout=30 ) }}
Except where specified, tokens may be enclosed in double or single quotation marks. This is required if a token contains spaces or a comma.
Under Windows, the total length of a tag (from the opening brace to the closing brace) may not exceed 4096 characters.
{{ ServiceLibs( MyVeryLongLibraryName AnotherVeryLongLibraryName ) }}
You may still have to disable word-wrapping and reformatting for .srf files to prevent reformatting, or create tags that do not contain spaces.