[Zope] html space( ) in string

J Cameron Cooper jccooper@jcameroncooper.com
Tue, 25 Mar 2003 13:12:30 -0600


>
>
> The following code-snippet:
>         global space python:[' ;'];
>         global str_html_space python:space[0]*new_len_title;
> would be rendered in html as: ........... ........
> How can i solve this so that it will render a correct html space ( )?
>
If your rendering is in ZPT, you must use the 'structure' keyword to 
turn off the escaping.

          --jcc