即使启用了美化功能,VS Code 也不会在 index.php 中突出显示 HTML

即使启用了美化功能,VS Code 也不会在 index.php 中突出显示 HTML

正在开发一个 PHP 项目,但我的 PHP 中的 HTML 没有突出显示。

我不确定为什么,但是 html 本身会这样。

当我按照另一篇帖子的建议安装 beautify 时,我的用户设置没有更新。所以我去了 github repo 手动添加 beautify 的配置。

这是我在用户设置中添加和更新的代码片段。

"beautify.language": {
  "js": {
    "type": ["javascript", "json"],
    "filename": [".jshintrc", ".jsbeautifyrc"]
    //  "ext": ["js", "json"]
    // ^^ to set extensions to be beautified using the javascript beautifier
  },
  "css": ["css", "scss"],
  "html": ["htm", "html", "php", "blade"]
  // ^^ providing just an array sets the VS Code file type
}

但是它仍然没有在 php 中设置 html 样式。有什么建议吗?

相关内容