Hello. This is my first post. I've been using PSPad for about a year now. I
started using it because of it's nice hex editor, but quickly came to appreciate
it's fast startup time, and quite decent syntax highlighting.

Now I'm working on a project that is using Freemarker "ftl" files. This is a
Java templating language that looks like this:

        
<#assign book = doc.book>
<h1>${book.title}</h1>
<#list book.chapter as ch>
  <h2>${ch.title}</h2>
  <#list ch.para as p>
    <p>${p}
  </#list>
</#list> 

<@greet color="black" person="Fred"/>
<#macro greet person color="black">
  <font size="+2" color="${color}">Hello ${person}!</font>
</#macro>



What options do I have, if any, of adding syntax highlighting (if not code
completion) for freemarker?

Thanks,
Josh

-- 
<http://forum.pspad.com/read.php?2,45409,45409>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem