-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.toml
95 lines (79 loc) · 2.09 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
91
92
93
94
baseURL = 'https://jesselawson.github.io/getting-started-with-rust'
languageCode = 'en-us'
title = 'Getting Started with Programming in Rust'
theme = "openbook"
enableGitInfo = true
[permalinks]
post = "/:filename"
[[menu.nav]]
name = "About this book"
url = "/about"
weight = 1
[[menu.nav]]
name = "1: A new project"
url = "/chapter1"
weight = 2
[[menu.nav]]
name = "2: Variables & functions"
url = "/chapter2"
weight = 3
[[menu.nav]]
name = "3: Strings & memory"
url = "/chapter3"
weight = 4
[[menu.nav]]
name = "4: Compiler logic"
url = "/chapter4"
weight = 5
[[menu.nav]]
name = "5: Reading & writing files"
url = "/chapter5"
weight = 6
[[menu.nav]]
name = "6: Release build"
url = "/chapter6"
weight = 7
[params]
description = "Dive head-first into Rust from scratch, learning the basics by building a markdown compiler."
homeMetaContent = "A beginner-friendly, free, online book about the Rust programming language."
footer = "Copyright © 2022 Jesse Lawson. All rights reserved."
showThemeSwitcher = false
navTitleText = "Getting Started with Programming in Rust"
logoAlt = "Getting Started with Programming in Rust online book"
githubRepoBaseUrl = "https://github.com/jesselawson/getting-started-with-rust/"
[markup.goldmark.renderer]
unsafe = true
[markup]
defaultMarkdownHandler = 'goldmark'
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
linkifyProtocol = 'https'
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
autoHeadingID = true
autoHeadingIDType = 'github'
[markup.goldmark.parser.attribute]
block = false
title = true
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 1
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
lineAnchors = ''
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = false
noHl = false
style = 'trac'
tabWidth = 4