Versions in this module Expand all Collapse all v0 v0.1.0 Aug 8, 2026 Changes in this version + const Version + type Document = nokogiri.Document + type MapResolver map[string]string + func (m MapResolver) Resolve(href, base string) (string, string, error) + type Node = nokogiri.Node + type NodeSet = nokogiri.NodeSet + type Resolver interface + Resolve func(href, base string) (source string, resolvedBase string, err error) + type ResolverFunc func(href, base string) (string, string, error) + func (f ResolverFunc) Resolve(href, base string) (string, string, error) + type Stylesheet struct + func Parse(doc *nokogiri.Document) (*Stylesheet, error) + func ParseString(src string) (*Stylesheet, error) + func ParseStringWithResolver(src string, r Resolver) (*Stylesheet, error) + func ParseWithResolver(doc *nokogiri.Document, r Resolver) (*Stylesheet, error) + func (s *Stylesheet) Apply(src *nokogiri.Document, params map[string]any) (string, error) + func (s *Stylesheet) Transform(src *nokogiri.Document, params map[string]any) (*nokogiri.Document, error)