修改dreamweaver是它能支持freemarker

阅读更多

1,如上修改ApplicationData/Micomedia/Dreamweaver/Configuration/Extensions.txt
在HTML Documents前加上ftl,如:ftl:HTML Documents
2,如上第二步:修改Configuration/DocumentTypes/MMDocumentTypes.xml文件
把id为HTML里的winfileextension里加入ftl,macfileextension里也加上ftl
3,支持Freemarker:将freemarker 脚本显示成和js一样的图标效果吧
打开Dreamweaver 8\Configuration\ThirdPartyTags\Tags.xml加入

 

  1. < !-- FreeMarker Tag By hety-->  
  2. <directive_spec tag_name="ftl_b1" start_string="[#" end_string="]" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  
  3. <directive_spec tag_name="ftl_e1" start_string="[/#" end_string="]" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  
  4. <directive_spec tag_name="ftl_i" start_string="[@" end_string="/]" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  
  5. <directive_spec tag_name="ftl_b2" start_string="<#" end_string=">" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  
  6. <directive_spec tag_name="ftl_e2" start_string=" end_string=">" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  
  7. <directive_spec tag_name="ftl_v" start_string="${" end_string="}" detect_in_attribute="true" icon="TemplateExpr.gif" icon_width="17" icon_height="15"/>  

重启下dreamweaver后,我们可以打开ftl文件,在可视化视图上编辑了

你可能感兴趣的:(Dreamweaver,freemarker,XML,脚本,HTML)