forked from ponylang/pony-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
91 lines (73 loc) · 1.49 KB
/
config.toml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
baseURL = "https://tutorial.ponylang.io/"
languageCode = "en-us"
title = "Pony Tutorial"
theme = "pony-doc-site"
canonifyurls = false
preserveTaxonomyNames = true
enableGitInfo = true
uglyURLs = true
[params]
github = "https://www.github.com/ponylang/ponyc"
twitter = "https://www.twitter.com/ponylang"
[related]
threshold = 80
includeNewer = true
toLower = false
[[related.indices]]
name = "tags"
weight = 100
[outputs]
home = ["HTML", "JSON"]
page = ["HTML"]
[[menu.toc]]
name = "Getting Started"
weight = 10
identifier = "getting-started"
[[menu.toc]]
name = "Types"
weight = 20
identifier = "types"
[[menu.toc]]
name = "Expressions"
weight = 30
identifier = "expressions"
[[menu.toc]]
name = "Reference Capabilities"
weight = 40
identifier = "reference-capabilities"
[[menu.toc]]
name = "Object Capabilities"
weight = 45
identifier = "object-capabilities"
[[menu.toc]]
name = "Generics"
weight = 50
identifier = "generics"
[[menu.toc]]
name = "Pattern Matching"
weight = 50
identifier = "pattern-matching"
[[menu.toc]]
name = "Packages"
weight = 60
identifier = "packages"
[[menu.toc]]
name = "Testing"
weight = 70
identifier = "testing"
[[menu.toc]]
name = "C FFI"
weight = 80
identifier = "c-ffi"
[[menu.toc]]
name = "Gotchas"
weight = 90
identifier = "gotchas"
[[menu.toc]]
name = "Where Next?"
weight = 100
identifier = "where-next"
[[menu.toc]]
name = "Appendices"
weight = 110
identifier = "appendices"