How do I get Dreamweaver to deploy syntax highlighting for full script CFC's?

Posted by Mel on Super User See other posts from Super User or by Mel
Published on 2011-01-06T00:57:11Z Indexed on 2011/01/06 1:56 UTC
Read the original article Hit count: 367

Is there a way to get Dreamweaver CS4 to use syntax highlighting when writing full script CFCs? If the document type is .cfc and they syntax is fullscript, there is no syntax highlighting; the code will be in black text...

For example, the following block of code will appear without syntax highlighting:

component extends="whatever" output="false" {
  public void foo() {
  }
}

While the tag equivalent would be highlighted normally:

<cfcomponent extends="whatever" output="false">
  <cffunction name="foo" returnType="void" access="public">
  </cffunction>
</cfcomponent>

© Super User or respective owner

Related posts about syntax-highlighting

Related posts about dreamweaver