【发布时间】:2019-08-25 11:17:25
【问题描述】:
我在 Visual Studio 中编写了一个 Django 网站 - 但通常不是
{# comment #} 风格我更喜欢<!-- comment -->。问题是,Visual Studio 不允许我仅仅改变评论风格。例如,评论后(Ctrl + K + C)我有这个:
{#<style>
body { height: 100%; }
html { height: 100%; }
</style>#}
我想要这个:
<!--
<style>
body { height: 100%; }
html { height: 100%; }
</style>
-->
这真的让我很沮丧 - 我可以从你那里得到任何改变它的提示吗?
【问题讨论】:
标签: html django visual-studio visual-studio-2017