reshape-parser
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -62,3 +62,6 @@ const {SAXParser} = require('parse5') | ||
const node = { type: 'text', content: attr.value } | ||
addLocation(node, location[attr.name], options) | ||
let propName = '' | ||
if (attr.prefix && attr.prefix.length) propName += `${attr.prefix}:` | ||
propName += attr.name.toLowerCase() | ||
addLocation(node, location[propName], options) | ||
m[attr.name] = [node] | ||
@@ -65,0 +68,0 @@ return m |
{ | ||
"name": "reshape-parser", | ||
"description": "html parser for reshape", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"author": "Jeff Escalante", | ||
@@ -6,0 +6,0 @@ "ava": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5780
66