aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-09-03 11:16:20 +0200
committerMartin Fischer <martin@push-f.com>2023-09-03 13:21:37 +0200
commitefd25742b9a24152873a4d066943bdcecfcfd2ab (patch)
tree8efe1847921a870bc7314b1781b47d9136335e33 /README.md
parent975b2206adb0250cedcfd28598e5b3098b239754 (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.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a1f8a82..5da2675 100644
--- a/README.md
+++ b/README.md
@@ -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};