[Zope] R: [Zope] How-to Bypass DTML Code?

Marcel Preda marcel@punto.it
Mon, 26 Jun 2000 20:05:57 +0200


----- Original Message ----- 
From: Nestor A. Diaz L. <nestor@tiendalinux.com>
Cc: <zope@zope.org>
Sent: Monday, June 26, 2000 7:47 PM
Subject: [Zope] How-to Bypass DTML Code?


> Hi, anyone know how to bypass the dtml-code, that's because i'm writing a
> howto with showing the use of some "dtml-tags" so it tries to interpreting
> it rather than only showing them.


One way:

Replace `< ' with `&lt;'
and '>' with '&gt;'

<HTML>
<BODY>
&lt;dtml-var aVar&gt;
<BODY>
</HTML>

PM