Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你知道如何检查 HTML 文件中的无效语法吗?我正在使用带有合成插件 vim 插件的 ember.js,它产生的警告让我感到困惑。
该代码无效,因为<script>不应包含任何其他 HTML 标记。
<script>
:help syntastic显示如何禁用给定文件类型的语法检查:
:help syntastic
let g:syntastic_mode_map={ 'mode': 'active', \ 'active_filetypes': [], \ 'passive_filetypes': ['html'] }