| commit | 929b6de1ba53772205413d5329c9a90f1159cde5 | [log] [tgz] |
|---|---|---|
| author | Moritz <mosum@google.com> | Thu Oct 31 13:17:56 2024 |
| committer | GitHub <noreply@github.com> | Thu Oct 31 13:17:56 2024 |
| tree | 7ac234eda1783dc3e5746f3268e8470900ec2895 | |
| parent | 6d3bc86cf2ab530ef3fa5f84b5980dc318a02af4 [diff] |
Update README.md (#258)
[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/tools/tree/main/pkgs/html
A Dart implementation of an HTML5 parser.
Parsing HTML is easy!
import 'package:html/parser.dart'; void 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.
This package was a port of the Python html5lib library.