Skip to content

Commit a94e687

Browse files
committed
Replace http with https
1 parent 48b1c64 commit a94e687

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ html5ever is written in [Rust][], so it avoids the most notorious security probl
1616

1717
## Getting started in Rust
1818

19-
Add html5ever as a dependency in your [`Cargo.toml`](http://crates.io/) file:
19+
Add html5ever as a dependency in your [`Cargo.toml`](https://crates.io/) file:
2020

2121
```toml
2222
[dependencies]
@@ -51,9 +51,9 @@ The code is cross-referenced with the WHATWG syntax spec, and eventually we will
5151

5252
html5ever builds against the official stable releases of Rust, though some optimizations are only supported on nightly releases.
5353

54-
[API documentation]: http://doc.servo.org/html5ever/index.html
54+
[API documentation]: https://doc.servo.org/html5ever/index.html
5555
[Servo]: https://github.com/servo/servo
56-
[Rust]: http://www.rust-lang.org/
56+
[Rust]: https://www.rust-lang.org/
5757
[in the bug tracker]: https://github.com/servo/html5ever/issues?q=is%3Aopen+is%3Aissue+label%3Aweb-compat
5858
[html5lib-tests]: https://github.com/html5lib/html5lib-tests
5959
[`examples/html2html.rs`]: https://github.com/servo/html5ever/blob/master/html5ever/examples/html2html.rs

xml5ever/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To make `SimpleTokenPrinter` a [`TokenSink`](https://ygg01.github.io/docs/xml5ev
6464
```
6565

6666
Now, we need some input to process. For input we'll use `stdin`. However, xml5ever `tokenize_to` method only takes `StrTendril`. So we need to construct a
67-
[`ByteTendril`](http://doc.servo.org/tendril/type.ByteTendril.html) using `ByteTendril::new()`, then read the `stdin` using [`read_to_tendril`](http://doc.servo.org/tendril/trait.ReadExt.html#tymethod.read_to_tendril) extension.
67+
[`ByteTendril`](https://doc.servo.org/tendril/type.ByteTendril.html) using `ByteTendril::new()`, then read the `stdin` using [`read_to_tendril`](https://doc.servo.org/tendril/trait.ReadExt.html#tymethod.read_to_tendril) extension.
6868

6969
Once that is set, to make `SimpleTokenPrinter` parse the input, call,
7070
`tokenize_to` with it as the first parameter, input wrapped in Option for second parameter and XmlToke.

0 commit comments

Comments
 (0)