Hi all,

I am using DW MX to edit templates for a FreeMarker application.

The template tag fromat is like so:

<ul>
<#list birds as bird>
<li>${bird.name?cap_first}: ${bird.description}
Favorite food: ${bird.favoriteFood}
</#list>
</ul>


Can I get Dreamweaver to treat

<#list birds as bird>

and

</#list>

as comment tags?

I want them to disappear or reduce to icons like ASP code.

Thank you!



Bear