markdown-it-attrs
Advanced tools
Comparing version 0.1.8 to 0.1.9
{ | ||
"name": "markdown-it-attrs", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"description": "Add classes, identifiers and attributes to your markdown with {} curly brackets, similar to pandoc's header attributes", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -58,2 +58,6 @@ /** | ||
if ((char === pairSeparator && !valueInsideQuotes) || i === end) { | ||
if (key === '') { | ||
// beginning or ending space: { .red } vs {.red} | ||
continue; | ||
} | ||
attrs.push([key, value]); | ||
@@ -60,0 +64,0 @@ key = ''; |
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
11867
244