我正在 Eclipse 中开发一个 VXML IVR 应用程序,它充满了杂乱的 JSP。我的一些(继承的!)源代码如下所示:
<%if (useLegacy) {%>
<form id="getLegacy">
<block>
<if cond="gblFirstRunThroughFlag=='true'">
<%--Use special "extra info" menu to retrieve the legacy ID--%>
<goto next="getLegacyInfoFirst.jsp"/>
<else>
<goto next="getLegacyInfo.jsp"/>
</if>
</block>
</form>
<%}%>
我很想找到一个可以修复缩进的工具,以便脚本和标记更容易阅读:
<%if (useLegacy) {%>
<form id="getLegacy">
<block>
<if cond="gblFirstRunThroughFlag=='true'">
<%--Use special "extra info" menu to retrieve the legacy ID--%>
<goto next="getLegacyInfoFirst.jsp"/>
<else/>
<goto next="getLegacyInfo.jsp"/>
</if>
</block>
</form>
<%}%>
Windows 世界中是否存在这样的工具,免费?
谢谢!
IVR 复仇者