我正在使用 IntelliJ 为 eXo 平台的 portlet 开发构建一个 Juzu 项目。
问题是我有模板文件,index.gtmpl
我可以在其中包含 HTML 编码,但文件以简单文本文件的形式打开。
我缺少的配置中是否有插件?
谢谢!
================= ** 编辑 ** ============================
我的文件如下所示:
editMode.gtmpl
#{param name=enableComment/}
<form action="@{JuZcretApplication.enableComment()}" method="POST" role="form">
<h5>Configuration</h5>
<input type="checkbox" name="enableComment" <%=enableComment ? "checked" : "" %>/>
Enable Comment
<button type="submit">Save</button>
</form>