Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-html-languageservice

Package Overview
Dependencies
Maintainers
6
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-html-languageservice - npm Package Compare versions

Comparing version 3.0.0-next.6 to 3.0.0-next.7

4

docs/customData.md

@@ -48,3 +48,3 @@ # Custom Data for HTML Language Service

- Completion on tag, attirbute and attribute value
- Completion on tag, attribute and attribute value
- Hover on tag (here's the [issue](https://github.com/Microsoft/vscode-html-languageservice/issues/47) for hover on attribute / attribute-name)

@@ -96,2 +96,2 @@

- Completion on `<foo xattr=>` will provide all values in valueSet `x`, which is `xval`
- Hover on `foo` will show `The foo element`
- Hover on `foo` will show `The foo element`

@@ -161,3 +161,3 @@ /*---------------------------------------------------------------------------------------------

codeSnippet = codeSnippet + value;
if (attr.valueSet) {
if (attr.valueSet || attr.name === 'style') {
command = {

@@ -164,0 +164,0 @@ title: 'Suggest',

@@ -172,3 +172,3 @@ /*---------------------------------------------------------------------------------------------

codeSnippet = codeSnippet + value;
if (attr.valueSet) {
if (attr.valueSet || attr.name === 'style') {
command = {

@@ -175,0 +175,0 @@ title: 'Suggest',

{
"name": "vscode-html-languageservice",
"version": "3.0.0-next.6",
"version": "3.0.0-next.7",
"description": "Language service for HTML",

@@ -5,0 +5,0 @@ "main": "./lib/umd/htmlLanguageService.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc