html 0.15.5 html: ^0.15.5 copied to clipboard
APIs for parsing and manipulating HTML content outside the browser.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add html
With Flutter:
$ flutter pub add html
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
html: ^0.15.5
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:html/dom.dart';
import 'package:html/dom_parsing.dart';
import 'package:html/html_escape.dart';
import 'package:html/parser.dart';