html.md

 1# HTML
 2
 3HTML support is available through the [HTML extension](https://github.com/zed-industries/zed/tree/main/extensions/html).
 4
 5- Tree-sitter: [tree-sitter/tree-sitter-html](https://github.com/tree-sitter/tree-sitter-html)
 6- Language Server: [microsoft/vscode-html-languageservice](https://github.com/microsoft/vscode-html-languageservice)
 7
 8This extension is automatically installed.
 9
10If you do not want to use the HTML extension, you can add the following to your settings:
11
12```json
13{
14  "auto_install_extensions": {
15    "html": false
16  }
17}
18```
19
20## See also:
21
22- [CSS](./css.md)
23- [JavaScript](./javascript.md)
24- [TypeScript](./typescript.md)