有没有办法在 VS Code 中加粗所有标签?

Is there a way to Bold all tags in VS Code?

有没有办法在设置中加粗 VS Code 中的所有标签。

EX转:

```<ul>
  <li class="clickable">Clickable</li>
  <li>Not clickable</li>
<ul>```

为此:

```**<ul>
  <li** class="clickable">Clickable**</li>**
  **<li>**Not clickable**</li>
<ul>**```

我认为这就是您想要的 settings.json:

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": "punctuation.definition.tag, entity.name.tag.html",
        "settings": {
          // "foreground": "#ff0000",
          "fontStyle": "bold"
        }
      },
    ]
  },

您可能需要也可能不需要 punctuation.definition.tag 选择器。

请参阅 https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide#scope-inspector for how to find the scope of tokens in your language. And https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme,了解如何使用 editor.tokenColorCustomizations 设置来修改您在第一步中找到的那些语言范围。