有任何 Vs Code 扩展可以在里面语法高亮 HTML 吗?
<script id="template" type="text/ractive"> <p>Hello, world!</p> </script>
我找到了解决方案:
从这个链接我遵循相同的逻辑:https://forum.camunda.io/t/syntax-highlighting-for-cam-script-in-vsc/15218/2
所以
C:\Users\<username>\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\html\syntaxes
html.tmLanguage.json
jscript
| ractive |
之后添加
| jscript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t |
应该看起来像这样:
| jscript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | ractive | livescript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t |
结果(图)