我使用原子美化来格式化html,但它总是将所有属性放在一行中。我如何设置atom-美化来保持不同行中的属性。
<!--What I want-->
<a class="btn btn-default"
ng-click="history.more=!history.more">
More
</a>
<!--The current format result-->
<a class="btn btn-default" ng-click="history.more=!his
我试图使用漂亮的some来读取html标签,并检查一些标签是可用的还是缺少的。
我正在使用漂亮汤读取文件,然后在测试文件中使用它。
在这里,我试过但没有成功:
class Testing(unittest.TestCase):
@classmethod
def setUp(name):
name.html = None
with open("index.html") as frd:
name.html = frd.read()
nam