notepad ++中是否有按钮或快捷键来更改此内容:
<#if x?string=="true">${"first this"}${"then this"}${"last this"}<#if y?string=="true">${"plan B"}<#else><#if z?? && z?first??>${generic_number*100}${"%"}<#else>${sum_number*100}${"%"}</#if></#if></#if>
到这个
<#if x?string=="true">
${"first this"}${"then this"}${"last this"}
<#if y?string=="true">
${"plan B"}
<#else>
<#if z?? && z?first??>
${generic_number*100}${"%"}
<#else>
${sum_number?first*100}${"%"}
</#if>
</#if>
我需要正确地看待层次结构。 手动执行此操作需要很长时间,特别是对于长代码。
由于