diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-03 11:16:20 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 13:21:37 +0200 |
commit | efd25742b9a24152873a4d066943bdcecfcfd2ab (patch) | |
tree | 8efe1847921a870bc7314b1781b47d9136335e33 /README.md | |
parent | 975b2206adb0250cedcfd28598e5b3098b239754 (diff) |
docs: restore accidentally lost code block info string
I accidentally lost it in b125bec9914bd211d77719bd60bc5a23bd9db579.
(I should have changed the info string to ```rust ignore.)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ Spec-compliant HTML parsing [requires both tokenization and tree-construction][p While this crate implements a spec-compliant HTML tokenizer it does not implement any tree-construction. Instead it just provides a `NaiveParser` that may be used as follows: -``` +```rust use std::fmt::Write; use html5tokenizer::{NaiveParser, Token}; |