I write a Django website in Visual Studio - but often instead of
{# comment #}
style I would prefer <!-- comment -->
. Problem is, Visual Studio doesn't allow me just to change commenting style. For example, after commenting (Ctrl + K + C
) I have this:
{#<style>
body { height: 100%; }
html { height: 100%; }
</style>#}
and I want to have this:
<!--
<style>
body { height: 100%; }
html { height: 100%; }
</style>
-->
That's really frustrating for me - could I get from you any tips how to change it?