Closed mattbierner closed 10 years ago
Moves section selector into index.js config. fixes #31.
index.js
Related changes to better support other section types (mainly img):
img
:empty
isEmpty(x.text())
<p><img /></p>
<p><input /></p>
:has(img)
Looks great!
Thanks for the contribution.
Moves section selector into
index.js
config. fixes #31.Related changes to better support other section types (mainly
img
)::empty
instead ofisEmpty(x.text())
. This fixes the case<p><img /></p>
but now include cases like<p><input /></p>
:has(img)
to default selector set.