Skip to content

Commit c1817af

Browse files
alexpovelanonrig
authored andcommitted
docs: Apply Markdown lints
1 parent 73d237b commit c1817af

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## WHATWG URL parser for Rust
1+
# WHATWG URL parser for Rust
22

33
Fast [WHATWG URL Specification](https://url.spec.whatwg.org) compliant URL parser for Rust.
44
Well-tested and widely used by Node.js since [Node 18](https://nodejs.org/en/blog/release/v18.17.0).
55

66
The Ada library passes the full range of tests from the specification, across a wide range of platforms (e.g., Windows, Linux, macOS).
77
It fully supports the relevant [Unicode Technical Standard](https://www.unicode.org/reports/tr46/#ToUnicode).
88

9-
### Usage
9+
## Usage
1010

1111
See [here](examples/simple.rs) for a usage example.
1212
You can run it locally with `cargo run --example simple`.
@@ -27,7 +27,7 @@ Enabling this feature without `libc++` installed would cause compile error.
2727

2828
Ada is fast. The benchmark below shows **3.34 times** faster URL parsing compared to `url`
2929

30-
```
30+
```text
3131
parse/ada_url time: [2.0790 µs 2.0812 µs 2.0835 µs]
3232
thrpt: [369.84 MiB/s 370.25 MiB/s 370.65 MiB/s]
3333
@@ -54,9 +54,9 @@ parse/url time: [6.9266 µs 6.9677 µs 7.0199 µs]
5454
| **[`Send`](https://doc.rust-lang.org/std/marker/trait.Send.html)** | Used to declare that the type can be transferred across thread boundaries. |
5555
| **[`Sync`](https://doc.rust-lang.org/stable/std/marker/trait.Sync.html)** | Used to declare that the type is thread-safe. |
5656

57-
### Development
57+
## Development
5858

59-
#### `justfile`
59+
### `justfile`
6060

6161
The [`justfile`](./justfile) contains commands (called "recipes") that can be executed by [just](https://github.com/casey/just) for convenience.
6262

@@ -72,7 +72,7 @@ just all
7272
just all --skip=libcpp,serde
7373
```
7474

75-
### License
75+
## License
7676

7777
This code is made available under the Apache License 2.0 as well as the MIT license.
7878

0 commit comments

Comments
 (0)