Interfaces
The HTML library defines the following core interfaces:
Extractor
The primary interface for HTML content extraction. Processor implements this interface.
type Extractor interface {
// Core extraction
Extract(htmlBytes []byte) (*Result, error)
ExtractWithContext(ctx context.Context, htmlBytes []byte) (*Result, error)
ExtractFromFile(filePath string) (*Result, error)
ExtractFromFileWithContext(ctx context.Context, filePath string) (*Result, error)
// Text extraction
ExtractText(htmlBytes []byte) (string, error)
ExtractTextFromFile(filePath string) (string, error)
ExtractTextWithContext(ctx context.Context, htmlBytes []byte) (string, error)
ExtractTextFromFileWithContext(ctx context.Context, filePath string) (string, error)
// Formatted output
ExtractToMarkdown(htmlBytes []byte) (string, error)
ExtractToMarkdownFromFile(filePath string) (string, error)
ExtractToJSON(htmlBytes []byte) ([]byte, error)
ExtractToJSONFromFile(filePath string) ([]byte, error)
ExtractToMarkdownWithContext(ctx context.Context, htmlBytes []byte) (string, error)
ExtractToMarkdownFromFileWithContext(ctx context.Context, filePath string) (string, error)
ExtractToJSONWithContext(ctx context.Context, htmlBytes []byte) ([]byte, error)
ExtractToJSONFromFileWithContext(ctx context.Context, filePath string) ([]byte, error)
// Batch processing
ExtractBatch(htmlContents [][]byte) *BatchResult
ExtractBatchWithContext(ctx context.Context, htmlContents [][]byte) *BatchResult
ExtractBatchFiles(filePaths []string) *BatchResult
ExtractBatchFilesWithContext(ctx context.Context, filePaths []string) *BatchResult
// Link extraction
ExtractAllLinks(htmlBytes []byte) ([]LinkResource, error)
ExtractAllLinksFromFile(filePath string) ([]LinkResource, error)
ExtractAllLinksWithContext(ctx context.Context, htmlBytes []byte) ([]LinkResource, error)
ExtractAllLinksFromFileWithContext(ctx context.Context, filePath string) ([]LinkResource, error)
// Lifecycle
Close() error
}StatsProvider
Statistics and cache management interface.
type StatsProvider interface {
GetStatistics() Statistics
ClearCache()
ResetStatistics()
}ContentNode
Abstract interface for HTML nodes, used in content scoring algorithms.
type ContentNode interface {
Type() string // Node type ("element", "text", "comment", etc.)
Data() string // Tag name or text content
AttrValue(key string) string // Attribute value
Attrs() []NodeAttr // All attributes
FirstChild() ContentNode // First child node
NextSibling() ContentNode // Next sibling node
Parent() ContentNode // Parent node
}Scorer
Content scoring algorithm interface for customizing article recognition strategies.
type Scorer interface {
Score(node ContentNode) int // Calculate node relevance score
ShouldRemove(node ContentNode) bool // Determine if node should be removed
}WARNING
When a single Processor is shared across concurrent Extract calls, Score/ShouldRemove may be invoked from multiple goroutines simultaneously. Therefore, any Scorer implementation must ensure its own concurrency safety.
The library's built-in default scorer is read-only and inherently concurrency-safe; a custom Scorer that holds mutable state (such as a cache or counter) must perform its own locking and synchronization.
Inject a custom scorer via the Config.Scorer field:
type MyScorer struct{}
func (s *MyScorer) Score(node html.ContentNode) int {
// Custom scoring logic
return 0
}
func (s *MyScorer) ShouldRemove(node html.ContentNode) bool {
// Custom removal logic
return false
}
cfg := html.DefaultConfig()
cfg.Scorer = &MyScorer{}AuditSink
Audit log output interface.
type AuditSink interface {
Write(entry AuditEntry)
Close() error
}See Audit System for built-in Sink implementations.