We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee5fc8 commit 7f9c89dCopy full SHA for 7f9c89d
packages/heml-parse/src/index.js
@@ -2,7 +2,7 @@ import { load } from 'cheerio'
2
import closeSelfClosingNodes from './closeSelfClosingNodes'
3
import openWrappingNodes from './openWrappingNodes'
4
import extractInlineStyles from './extractInlineStyles'
5
-import safeSelectorize from './safeSelectorize'
+import preprocessStyles from './preprocessStyles'
6
7
function parse (contents, options = {}) {
8
const {
@@ -32,7 +32,7 @@ function parse (contents, options = {}) {
32
closeSelfClosingNodes($, elements)
33
openWrappingNodes($, elements)
34
extractInlineStyles($, elements)
35
- safeSelectorize($, elements)
+ preprocessStyles($, elements)
36
37
return $
38
}
0 commit comments