Skip to content

Commit 7cc7589

Browse files
committed
Update xml5ever Readme
1 parent fdbd3bf commit 7cc7589

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

xml5ever/README.md

+3-15
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ templates. XML5 tries to handle most common errors, in a manner similar to HTML5
2323

2424
- You aren't interested in well-formed documents.
2525
- You need to get some info from your data even if it has errors (although not all possible errors are handled).
26-
- You want to features like character references or xml namespaces.
26+
- You want to features like character references or XML namespaces.
2727

2828
## When you shouldn't use it
2929

@@ -34,17 +34,11 @@ templates. XML5 tries to handle most common errors, in a manner similar to HTML5
3434

3535
# Installation
3636

37-
Add xml5ever as a dependency in your project manifest.
37+
Add xml5ever as a dependency in your project manifest:
3838

3939
```toml
4040
[dependencies]
41-
xml5ever = "0.1.3"
42-
```
43-
44-
And add crate declaration in your lib.rs
45-
46-
```rust
47-
extern crate xml5ever
41+
xml5ever = "0.18"
4842
```
4943

5044
# Getting started
@@ -77,9 +71,3 @@ To build examples and tests you need to do something along the lines of:
7771
This will fetch tests from outside repository and it will invoke cargo to
7872
build and test the crate. If you need docs checkout either [API docs](https://docs.rs/xml5ever) or run `cargo docs`
7973
to generate documentation.
80-
81-
## Easy first tasks
82-
83-
What I generally recommend is to look at Clippy Linting badge results and create
84-
a PR for fixing the said lints. Other than that try to look for any tasks labeled
85-
easy or just update docs/examples.

0 commit comments

Comments
 (0)