diff options
author | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-28 00:06:09 +0100 |
---|---|---|
committer | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-28 00:06:09 +0100 |
commit | 75102006fb4b984e6878f2ad287fe203e8336865 (patch) | |
tree | 71c8ded603a43357119aca728822579b04b6ab92 /README.md | |
parent | e14abf483b238da4d5b69dbc425b2ab80d1c3e98 (diff) |
fix wording
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -32,13 +32,11 @@ assert_eq!(new_html, "<title>hello world</title>"); It fully implements [13.2.5 of the WHATWG HTML spec](https://html.spec.whatwg.org/#tokenization), i.e. is able to tokenize HTML documents and passes [html5lib's tokenizer -test suite](https://github.com/html5lib/html5lib-tests/tree/master/tokenizer). Most importantly it does not: +test suite](https://github.com/html5lib/html5lib-tests/tree/master/tokenizer), with the following exceptions: * [Implement charset detection.](https://html.spec.whatwg.org/#determining-the-character-encoding) This implementation requires all input to be Rust strings and therefore valid UTF-8. - * [Correct mis-nested tags](https://html.spec.whatwg.org/#an-introduction-to-error-handling-and-strange-cases-in-the-parser) - * Generally qualify as a complete HTML *parser* as per the WHATWG spec (yet). A distinguishing feature of `html5gum` is that you can bring your own token |