-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.toml
executable file
·87 lines (79 loc) · 1.78 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
baseurl = "https://sldn.softlayer.com/"
languageCode = "en-us"
title = "SoftLayer API"
canonifyurls = true
SectionPagesMenu = "sections"
pygmentsUseClasses=true
pluralizelisttitles = "false"
pagination.pagerSize = 10
googleAnalytics = "G-9XPZ9ZBSJE"
disablePathToLower = true
pygmentsCodeFences = true
pygmentsCodefencesGuessSyntax = true
refLinksErrorLevel = "WARNING"
refLinksNotFoundURL = '#'
[params]
description = "SoftLayer API Examples, implementations, and release notes."
author = "SoftLayer"
[taxonomies]
tag = "tags"
class = "classes"
pluralizeListTitles = false
[[menu.main]]
name = "Docs"
identifier = "sldn"
url = "/reference/softlayerapi"
[[menu.main]]
name = "Articles"
identifier = "article"
url ="/article/"
[[menu.main]]
name = "Go"
identifier = "go"
url = "/go/"
[[menu.main]]
name = "Java"
identifier = "java"
url = "/java/"
[[menu.main]]
name = "Python"
identifier = "python"
url = "/python/"
[[menu.main]]
name = "Ruby"
identifier = "ruby"
url = "/ruby/"
[[menu.main]]
name = "Rest"
identifier = "rest"
url = "/rest/"
[[menu.main]]
name = "PHP"
identifier = "php"
url = "/php/"
[[menu.main]]
name = "Tools"
identifier = "tools"
url = "/tools/"
[outputs]
home = ["HTML", "RSS"]
section = ["HTML"]
taxonomy = ["HTML"]
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
[markup.goldmark.renderer]
hardWraps = false
# required to allow for raw HTML in reference files
unsafe = true
xHTML = false