Drop unnecessary severity upgrades (#181)

These are a long outdated legacy pattern which brought external CI more
inline with internal standards where these errors would fail the build.
We are now more strict and the upgrades only impact local development
where they are not useful.
1 file changed
tree: a4c11b62835e51f2db63577624bd8326064d30a5
  1. .github/
  2. lib/
  3. test/
  4. .gitignore
  5. analysis_options.yaml
  6. CHANGELOG.md
  7. LICENSE
  8. pubspec.yaml
  9. README.md
README.md

This is a pure Dart HTML5 parser. It's a port of html5lib from Python.

Usage

Parsing HTML is easy!

import 'package:html/parser.dart' show parse;

main() {
  var document = parse(
      '<body>Hello world! <a href="www.html5rocks.com">HTML5 rocks!');
  print(document.outerHtml);
}

You can pass a String or list of bytes to parse. There's also parseFragment for parsing a document fragment, and HtmlParser if you want more low level control.