extractSpecificContent method
Extract specific content types (headings, links, images, etc.)
Implementation
Map<String, List<String>> extractSpecificContent() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.extractSpecificContent(_htmlContent!);
}