如何使用 html 整洁地了解离子标签?

how to make syntastic with html tidy aware of ionic tags?

我正在尝试使用 vim 编辑离子应用程序,该应用程序已使用 html tidy 启用了 syntastic。不幸的是,我遇到了很多错误。

如何让 html 整洁地意识到离子标签,或者失败时忽略它们,这样我就不会收到这样的错误:

www/index.html|26 col 5 error| <ion-pane> is not recognized!
...
www/index.html|24 col 3 warning| <body> proprietary attribute "ng-app"

我的解决方案是设置以下内容:

let g:syntastic_html_tidy_ignore_errors=["<ion-", "discarding unexpected </ion-", " proprietary attribute \"ng-"]