在Visual Studio 2017中注释html / django模板行

时间:2019-04-03 20:02:58

标签: html django visual-studio visual-studio-2017

我在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>
-->

这真的让我感到沮丧-我能从您那里获得任何更改方法的提示吗?

1 个答案:

答案 0 :(得分:1)

可能有一个可用于VS的插件可以解决该问题,但是,我认为它本身不支持块注释与行注释。但是,在Visual Studio Code中,如果您愿意在VS Code中进行编辑,则在“编辑”菜单上有用于行注释和行注释的单独选项,有时它们的行为会有所不同。