[Docs] New Annotation Added

Ed LaFrance edl@newmediaems.com
Mon, 7 May 2001 15:37:50 -0400



    Session: zAMGceS2
       Host: 216.175.126.81
   Referrer: 
    Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)

       Name: Ed LaFrance
    Subject: ictags_47 -- loop
      Email: edl@newmediaems.com
	
Comments:
<b>Undocumented Parameter: 'delimiter'</b><br>
The &#91;loop...] tag accepts the 'delimiter' parameter, allowing you to override
the default splitting of the loop list. For example, the following
constuct:<br>
<pre>&#91;loop
arg="My name is Joe.
This is my story."]
&#91;loop-code]
&#91;/loop]
</pre>
<p>
...will split the arg string on each space:<br>
<pre>My
name
is
Joe.
This
is
my
story.
</pre>
<p>
To split instead on the newline character:<br>
<pre>&#91;loop delimiter="\n"
arg="My name is Joe.
This is my story."]
&#91;loop-code]
&#91;/loop]
</pre>
<p>
Results:<br>
<pre>My name is Joe.
This is my story.
</pre>