detectMainContent method

ContentDetectionResult detectMainContent(
  1. String html
)

Detects the main content area of a webpage

html is the HTML content to parse

Implementation

ContentDetectionResult detectMainContent(String html) {
  return contentDetector.detectContent(html);
}