[Seaside] More template questions

Jim Benson jb@speed.net
Sun, 9 Jun 2002 21:38:32 -0700


Here's my next Seaside question:

I have an instance variable named stuff in an IAComponent, that has a bit of

stuff := '<ul><li>first</li><li>second</li></ul>'.

I have a template:

html
^ #( '[ stuff ]' )

What I want to do is keep the string as is in the HTML stream, instead of
doing the '&lt;' etc conversion. In other words in this example, I want the
list to show up.

I've switched over the Seaside 0.94.

Jim