Tags 在Aptana Studio 3中?>之后缩进问题

Tags 在Aptana Studio 3中?>之后缩进问题,tags,pydev,Tags,Pydev,格式在Aptana studio 3中给了我一个问题,这就是我想要的 <?php if (condition) { if (condition) { if (condition) { if (condition) { } else { if (condition) { ?>

格式在Aptana studio 3中给了我一个问题,这就是我想要的

<?php
if (condition) {
    if (condition) {
        if (condition) {
            if (condition) {
            } else {
                if (condition) {                    
                    ?>
                        <!--a block of html code would go here
                        a block of html code would go here
                        a block of html code would go here
                        a block of html code would go here
                        a block of html code would go here
                        -->                 
                    <?php

                }
            }
        }
    }
} else {
}
?> 
但是,格式化后,我得到的是:

<?php
if (condition) {
    if (condition) {
        if (condition) {
            if (condition) {
            } else {
                if (condition) {                    

?>
<!--a block of html code would go here
a block of html code would go here
a block of html code would go here
a block of html code would go here
a block of html code would go here
-->
<?php
}
}
}
}
} else {
}
?>
看起来格式化程序在我从php出来输入html时遇到了问题,但是我不想使用echo,因为html太多了

Netbeans处理这个问题。 如何在Aptana Studio中修复此问题

谢谢