toMarkdown method
Convert the entire page content to Markdown format
Implementation
String toMarkdown() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.toMarkdown(_htmlContent!);
}
Convert the entire page content to Markdown format
String toMarkdown() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.toMarkdown(_htmlContent!);
}