最好能够格式化像这样的代码
<%- include('header')%>
<h1>
<%=name.toUpperCase() %>
</h1>
<p>hello,
<%= name%>
</p>
<%- include('footer')%>
怪我咯2017-04-17 16:38:14
設定vscode使用者設定的檔案關聯,把ejs關聯到html。
"files.associations": {
"*.ejs": "html"
}
soonfy