> I was wondering if there was a way outside HTML tags to use say <? ?>, but > inside HTML tags use say "$".. so that the designer can write : > > <div $style> <? value ?> </div>
Yes, you can do this. As well as setting START_TAG and END_TAG to <?, ?>, turn on INTERPOLATE. This will cause $style to interpolate the TT variable style (ie: like <? style ?>). Of course, this isn't specific to HTML tags: $ will interpolate any plain text outside of the TT tags. Craig
