« Return to Thread: Multi line text strings

Multi line text strings

by Gary M. Catlin :: Rate this Message:

Reply to Author | View in Thread

Hello,

I am looking to implement new lines within a text string to simulate
separate paragraphs.

In the code below, I am defining a local table structure with two
columns; Control and CM.

#set ($RecCMs = [])

#set ($rec = { 'Control' : "Control1", 'CM' : "MyText1"}) #set ($n =
$RecCMs.add($rec))
#set ($rec = { 'Control' : "Control2", 'CM' : "Mytext2"}) #set ($n =
$RecCMs.add($rec))

I would like to replace the value of "MyText1" with a multi line string,
such as the following:

1. Do this
2. Do that
3. Do the other

Eventually, I would like the entire content of $RecCMs.CM to be
displayed in a table.

...
<td>$RecCMs.CM</td>
...

How do I go about defining the text string so that "new lines" are observed?


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...

 « Return to Thread: Multi line text strings