html_main_element

Last updated:

0 purchases

html_main_element Image
html_main_element Images
Add to Cart

Description:

html main element

html_main_element #
Detects the main element of a HTML web page, which represents the core article of that page
using a similar algorithm to Readability.
Usage #
A simple usage example:
import 'dart:io';
import 'package:html/parser.dart' as html_parser;

import 'package:html_main_element/html_main_element.dart';

void main() async {
// Load and parse html document
final htmlFile = File('test/local/index.html');
final document = html_parser.parse(await htmlFile.readAsBytes());
// Genererate score map and get score for every html element
final scoreMapReadability = readabilityScore(document.documentElement);
// Get the best scoring html element
final bestElemReadability = readabilityMainElement(document.documentElement);
print(bestElemReadability.outerHtml);
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.