-
Notifications
You must be signed in to change notification settings - Fork 68
/
_config.yml
65 lines (56 loc) · 1.4 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Site settings
title: hyper - fast and safe HTTP for the Rust language
baseurl: "/" # the subpath of your site, e.g. /blog/
url: "https://hyper.rs" # the base hostname & protocol for your site
defaults:
-
scope:
path: "_legacy/"
type: "guides"
values:
layout: "guide"
-
scope:
path: "_stable/"
type: "guides"
values:
layout: "guide"
-
scope:
path: "_contrib/"
type: "guides"
values:
layout: "guide"
collections:
legacy:
permalink: /guides/0.14/:path/
output: true
stable:
permalink: /guides/1/:path/
output: true
posts:
permalink: /blog/:year/:month/:day/:title/
output: true
contrib:
permalink: /contrib/:path/
output: true
# Build settings
markdown: kramdown
highlighter: rouge
kramdown:
input: GFM
syntax_highlighter: rouge
relative_links:
enabled: true
collections: true
plugins:
- jekyll-redirect-from
hyper_docs_url: https://docs.rs/hyper/latest
examples_url: https://github.com/hyperium/hyper/tree/master/examples
http_body_util_url: https://docs.rs/http-body-util/latest
hyper_tls_url: https://docs.rs/hyper-tls/latest
hyper_util_url: https://docs.rs/hyper-util/latest
http_docs_url: https://docs.rs/http/latest
futures_url: https://docs.rs/futures/0.3.*
legacy_docs_url: https://docs.rs/hyper/0.14.*
legacy_examples_url: https://github.com/hyperium/hyper/tree/0.14.x/examples