Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From vscode-html-css
VSCode HTML Language Server provides code intelligence for HTML — diagnostics, validation, hover info, tag completion, and navigation for .html/.htm files.
npx claudepluginhub siam-analytics/claude-code-lsps --plugin vscode-html-cssThis LSP server requires vscode-html-language-serverto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"html": {
"command": "vscode-html-language-server",
"extensionToLanguage": {
".htm": "html",
".html": "html"
},
"args": [
"--stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
vscode-html-language-serverstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Initialization Options:
{}Settings:
{}Share bugs, ideas, or general feedback.