[Zope] escaping with dtml?

Dieter Maurer dieter@handshake.de
Wed, 7 Jun 2000 22:30:38 +0200 (CEST)


Riku Voipio writes:
 > I'm trying to get some doubleqoutes to the final document,
 > but I've been unsuccesful so far:
In a Python expression, you can use "chr(34)" to add a quote,
e.g.

<dtml-let quote="chr(34)">
....
</dtml-let>


Dieter