如何使自定义标签在 PHPStorm 上有效?

如何使自定义标签在 PHPStorm 上有效?

某些 HTML 文件中有一些有效标签,<esi:include dca="esi" onerror="continue" src="{{ esi_bottom_url }}"/>但 PHPStorm 将它们报告为错误。如何让它不将它们报告为错误?

错误

https://www.w3.org/TR/esi-lang/ https://docs.oracle.com/cd/B14099_19/caching.1012/b14046/esi.htm#i633302

答案1

您可以:

  • Right mouse click在标签上并选择Add [tag] to custom html tags,其中[tag]是选定的短语。
  • 禁用标签检查Settings-> Editor-> Inspections-> HTML ->Unknown tag或更改报告的严重性。

您也可以将所需的http://www.edge-delivery.org/esi/1.0命名空间添加到<html>标签中,请参阅ESI 文档,例如:

<html xmlns:esi="http://www.edge-delivery.org/esi/1.0">

相关内容