[Zope] ZPT vs DTML problems

J Cameron Cooper jccooper@jcameroncooper.com
Fri, 04 Apr 2003 17:42:51 -0600


>
> Is there something similar to tal:replace that applies any markup in 
> the object you are replacing the tag with? Example:
>
> <span tal:replace=”container/content”></span>
>
<span tal:replace=”structure container/content”></span>

will decline to HTML-escape the output (because you tell it the output 
is structural -- wrt to HTML.)

--jcc