[Zope-dev] ZPT & Plain Text

Chris Withers chrisw@nipltd.com
Tue, 04 Dec 2001 17:58:38 +0000


"Phillip J. Eby" wrote:
> 
> I personally would like to see ZPT support plain text at some point, and it
> already has some of the things necessary to do it.  But that's a separate
> issue from Zope 3X or Zope 3 itself.

It already can:

<dummy tal:omit-tag=""
       tal:content="mymethod">
Some dummy text
</dummy>

Or even:

<dummy tal:replace="mymethod">
Some dummy text
</dummy>

It's more long winded that DTML in this case, but there's no need for another
markup language...

Chris