New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

textlint-plugin-html

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

textlint-plugin-html - npm Package Compare versions

Comparing version

to
0.1.7

4

lib/html-to-ast.js

@@ -102,2 +102,6 @@ // LICENSE : MIT

}
// map `url` to Link node
if (node.type === "Link" && typeof node.properties.href !== "undefined") {
node.url = node.properties.href;
}
}

@@ -104,0 +108,0 @@ removeUnusedProperties(node);

2

package.json

@@ -14,3 +14,3 @@ {

},
"version": "0.1.6",
"version": "0.1.7",
"description": "textlint HTML processsor plugin.",

@@ -17,0 +17,0 @@ "main": "lib/index.js",

@@ -81,2 +81,6 @@ // LICENSE : MIT

}
// map `url` to Link node
if (node.type === "Link" && typeof node.properties.href !== "undefined") {
node.url = node.properties.href;
}
}

@@ -83,0 +87,0 @@ removeUnusedProperties(node);

Sorry, the diff of this file is not supported yet