package cascadia
import "github.com/andybalholm/cascadia"
Package cascadia is an implementation of CSS selectors.
Index ¶
- func Filter(nodes []*html.Node, m Matcher) (result []*html.Node)
- func Query(n *html.Node, m Matcher) *html.Node
- func QueryAll(n *html.Node, m Matcher) []*html.Node
- type Matcher
- type Sel
- type Selector
- func Compile(sel string) (Selector, error)
- func MustCompile(sel string) Selector
- func (s Selector) Filter(nodes []*html.Node) (result []*html.Node)
- func (s Selector) Match(n *html.Node) bool
- func (s Selector) MatchAll(n *html.Node) []*html.Node
- func (s Selector) MatchFirst(n *html.Node) *html.Node
- type SelectorGroup
- func ParseGroup(sel string) (SelectorGroup, error)
- func ParseGroupWithPseudoElements(sel string) (SelectorGroup, error)
- func (s SelectorGroup) Match(n *html.Node) bool
- func (c SelectorGroup) String() string
- type Specificity
Functions ¶
func Filter ¶
Filter returns the nodes that match m.
func Query ¶
Query returns the first node that matches m, from the descendants of n. If none matches, it returns nil.
func QueryAll ¶
QueryAll returns a slice of all the nodes that match m, from the descendants of n.
Types ¶
type Matcher ¶
Matcher is the interface for basic selector functionality. Match returns whether a selector matches n.
type Sel ¶
type Sel interface { Matcher Specificity() Specificity // Returns a CSS input compiling to this selector. String() string // Returns a pseudo-element, or an empty string. PseudoElement() string }
Sel is the interface for all the functionality provided by selectors.
func Parse ¶
Parse parses a selector. Use `ParseWithPseudoElement` if you need support for pseudo-elements.
func ParseWithPseudoElement ¶
ParseWithPseudoElement parses a single selector, with support for pseudo-element.
type Selector ¶
A Selector is a function which tells whether a node matches or not.
This type is maintained for compatibility; I recommend using the newer and more idiomatic interfaces Sel and Matcher.
func Compile ¶
Compile parses a selector and returns, if successful, a Selector object that can be used to match against html.Node objects.
func MustCompile ¶
MustCompile is like Compile, but panics instead of returning an error.
func (Selector) Filter ¶
Filter returns the nodes in nodes that match the selector.
func (Selector) Match ¶
Match returns true if the node matches the selector.
func (Selector) MatchAll ¶
MatchAll returns a slice of the nodes that match the selector, from n and its children.
func (Selector) MatchFirst ¶
MatchFirst returns the first node that matches s, from n and its children.
type SelectorGroup ¶
type SelectorGroup []Sel
A SelectorGroup is a list of selectors, which matches if any of the individual selectors matches.
func ParseGroup ¶
func ParseGroup(sel string) (SelectorGroup, error)
ParseGroup parses a selector, or a group of selectors separated by commas. Use `ParseGroupWithPseudoElements` if you need support for pseudo-elements.
func ParseGroupWithPseudoElements ¶
func ParseGroupWithPseudoElements(sel string) (SelectorGroup, error)
ParseGroupWithPseudoElements parses a selector, or a group of selectors separated by commas. It supports pseudo-elements.
func (SelectorGroup) Match ¶
func (s SelectorGroup) Match(n *html.Node) bool
Match returns true if the node matches one of the single selectors.
func (SelectorGroup) String ¶
func (c SelectorGroup) String() string
type Specificity ¶
type Specificity [3]int
Specificity is the CSS specificity as defined in https://www.w3.org/TR/selectors/#specificity-rules with the convention Specificity = [A,B,C].
func (Specificity) Add ¶
func (s Specificity) Add(other Specificity) Specificity
func (Specificity) Less ¶
func (s Specificity) Less(other Specificity) bool
returns `true` if s < other (strictly), false otherwise
Source Files ¶
parser.go pseudo_classes.go selector.go serialize.go specificity.go
Directories ¶
Path | Synopsis |
---|---|
fuzz |
- Version
- v1.3.3 (latest)
- Published
- Dec 19, 2024
- Platform
- windows/amd64
- Imports
- 8 packages
- Last checked
- now –
Tools for package owners.