CARVIEW |
Select Language
HTTP/2 200
date: Mon, 13 Oct 2025 14:37:28 GMT
content-type: text/html; charset=utf-8
content-length: 38041
cache-control: s-maxage=300
etag: W/"9499-e9aalOsPqEJnq6N58DGhUf7YBzU"
strict-transport-security: max-age=31536000; includeSubDomains
request-context: appId=cid-v1:
content-security-policy: frame-ancestors 'self'
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
x-powered-by: ASP.NET
x-azure-ref: 20251013T143728Z-16df8d66498lq2xkhC1BOMdqns0000000mrg00000000az3n
x-cache: TCP_MISS
x-fd-int-roxy-purgeid: 0
accept-ranges: bytes
Custom Data Extension | Visual Studio Code Extension
API
Join a VS Code Dev Days event near you to learn about AI-assisted development in VS Code.
Dismiss this update
Custom Data Extension
Custom Data format allows extension authors to easily extend VS Code's HTML / CSS language support without having to write code.
The two Contribution Points for using custom data in an extension are:
contributes.html.customData
contributes.css.customData
For example, by including this section in an extension's package.json
:
{
"contributes": {
"html": {
"customData": ["./html.html-data.json"]
},
"css": {
"customData": ["./css.css-data.json"]
}
}
}
VS Code will load the HTML/CSS entities defined in both files and provide language support such as auto-completion and hover information for those entities.
You can find the custom-data-sample at microsoft/vscode-extension-samples.
10/09/2025