From a185c1431a9f2040e467cec75d1c1e3aa51bcb9d Mon Sep 17 00:00:00 2001 From: KillyMXI Date: Thu, 23 Mar 2023 18:25:55 +0400 Subject: [PATCH] add a link to attribute selectors syntax --- packages/html-to-text/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/html-to-text/README.md b/packages/html-to-text/README.md index 93d4f02..af2985d 100644 --- a/packages/html-to-text/README.md +++ b/packages/html-to-text/README.md @@ -168,7 +168,7 @@ Following selectors can be used in any combinations: * `.foo` - class name; * `#bar` - id; * `[baz]` - attribute presence; -* `[baz=buzz]` - attribute value (with any operators and also quotes and case sensitivity modifiers); +* `[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)); * `+` and `>` combinators (other combinators are not supported). You can match `

...

` with `p[style*="display:inline"i]` for example.