You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/html-to-text/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ Following selectors can be used in any combinations:
168
168
*`.foo` - class name;
169
169
*`#bar` - id;
170
170
*`[baz]` - attribute presence;
171
-
*`[baz=buzz]` - attribute value (with any operators and also quotes and case sensitivity modifiers);
171
+
*`[baz=buzz]` - attribute value (with any operators and also quotes and case sensitivity modifiers - [syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors#syntax));
172
172
*`+` and `>` combinators (other combinators are not supported).
173
173
174
174
You can match `<p style="...; display:INLINE; ...">...</p>` with `p[style*="display:inline"i]` for example.
0 commit comments