Hi all:<br><br>I create an app called MyApp, and wish its templates could be edit by DW or other HTML editors, without displaying [% %] template tags in HTML view.<br><br>So I replace [% %] with &lt;? ?&gt; tags, and write these codes in my MyApp.pm<br>
<br>__PACKAGE__-&gt;config(<br>        name     =&gt; &#39;MyApp&#39;,<br>        &#39;View::TT&#39; =&gt; {<br>            # any TT configurations items go here<br>            INCLUDE_PATH =&gt; [<br>              MyApp-&gt;path_to( &#39;root&#39;, &#39;src&#39; ),<br>
              MyApp-&gt;path_to( &#39;root&#39;, &#39;lib&#39; ),<br>            ],<br>            TEMPLATE_EXTENSION =&gt; &#39;.tt&#39;,<br>            CATALYST_VAR =&gt; &#39;c&#39;,<br>            TIMER        =&gt; 1,<br>
            START_TAG =&gt; &#39;&lt;?&#39;,<br>            END_TAG =&gt; &#39;?&gt;&#39;,<br>        },<br>        #TIMER =&gt; 1,<br>        #START_TAG =&gt; &#39;&lt;?&#39;,<br>        #END_TAG =&gt; &#39;?&gt;&#39;,<br>
    );<br><br>But seems START_TAG and END_TAG are not forwarded to TT.pm class.<br><br>Is there any other Template class to achieve this?<br><br>Thanks in advance.<br clear="all"><br>-- <br>Gung Shi Jie<br>Department of Computer Science and Information Engineering,<br>
National  Chung Cheng University<br>Republic of Taiwan<br>