-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.toml
42 lines (39 loc) · 1.13 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
baseURL = "http://example.org/"
languageCode = "en-us"
title = "Testing Handbook"
theme = 'book'
enableEmoji = true
[params]
BookLogo = 'TOB_Black.svg'
BookIconLogo = 'logo.png'
# Comment to make pages uneditable with a github link ("Edit this page" in the footer):
BookRepo = "https://github.com/trailofbits/testing-handbook"
BookEditBranch = "main"
math = false
[params.render_hooks.link]
errorLevel = 'warning' # ignore (default), warning, or error (fails the build)
highlightBroken = true # true or false (default)
[markup]
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = 'friendly'
tabWidth = 4
[markup.goldmark.renderer]
unsafe = false
[markup.goldmark.parser.attribute]
block = true
[markup.goldmark]
[markup.goldmark.extensions]
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['$$', '$$']]
inline = [['\(', '\)']]