forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
167 lines (156 loc) · 4.37 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
baseURL: "https://fluidframework.com/"
languageCode: "en-us"
refLinksErrorLevel: "WARNING"
theme: "thxvscode"
title: "Fluid Framework"
titleCaseStyle: "Chicago"
# Hugo modules enable mapping content from outside the Hugo folder
module:
noVendor: "github.com/**"
hugoVersion:
extended: true
min: "0.76.5"
mounts:
- source: content
target: content
- source: _replacements
target: content
- source: ../packages/dds/sequence/README.md
target: content/docs/sequence-readme.md
- source: static
target: static
# SVG icons from the @vscode/codicons package
- source: node_modules/@vscode/codicons/src/icons/beaker.svg
target: static/codicons/beaker.svg
- source: node_modules/@vscode/codicons/src/icons/book.svg
target: static/codicons/book.svg
- source: node_modules/@vscode/codicons/src/icons/bug.svg
target: static/codicons/bug.svg
- source: node_modules/@vscode/codicons/src/icons/comment-discussion.svg
target: static/codicons/comment-discussion.svg
- source: node_modules/@vscode/codicons/src/icons/edit.svg
target: static/codicons/edit.svg
- source: node_modules/@vscode/codicons/src/icons/github.svg
target: static/codicons/github.svg
- source: node_modules/@vscode/codicons/src/icons/play-circle.svg
target: static/codicons/play-circle.svg
- source: node_modules/@vscode/codicons/src/icons/rss.svg
target: static/codicons/rss.svg
- source: node_modules/@vscode/codicons/src/icons/twitter.svg
target: static/codicons/twitter.svg
permalinks:
page: "/:slug"
post: "/:year/:month/:title"
params:
appInsightKey: "" # This is provided by the build system as an env variable
cookies: false
customCSS: ["css/fluid.css", "css/tango.css"]
dateform: "Jan 2, 2006"
dateformNum: "2006-01-02"
dateformNumTime: "2006-01-02 15:04 -0700"
dateformShort: "Jan 2"
githubRepo: "microsoft/FluidFramework"
twitterHandle: "fluidframework"
banner:
showBanner: true # show or hide the banner completely
bannerClose: false # show or hide the close button on the banner
version: "0.50"
urlRef: "docs/updates/v0.50.md"
message: | # if set, this will override the release notes updates
[Azure Fluid Relay](/docs/deployment/azure-frs/) is available in _Public Preview_!
menu:
main:
- name: "Getting started"
url: "/docs/start/quick-start/"
weight: -100
- name: "Recipes"
url: "/docs/recipes/react/"
weight: -90
- name: "Docs"
url: "/docs/"
weight: -80
- name: "Community"
url: "/community/"
weight: -60
# - name: "Updates"
# url: "/posts/"
# weight: -50
old_section:
- identifier: "quick-start"
name: "Quick Start"
url: "/start/quick-start/"
weight: -800
- identifier: "tutorial"
name: "Tutorial"
url: "/start/tutorial/"
weight: -700
- identifier: "examples"
name: "Examples"
url: "/start/examples/"
weight: -600
# this menu supplements one generated in the apiNav partial
docs:
- identifier: "start"
name: "Getting started"
weight: -800
- identifier: "recipes"
name: "Recipes"
weight: -700
- identifier: "build"
name: "Build with Fluid"
weight: -600
- identifier: "testing"
name: "Testing"
weight: -500
- identifier: "deployment"
name: "Deployment"
weight: -400
- identifier: "DDS"
name: "Data structures"
weight: -300
- identifier: "concepts"
name: "Concepts"
weight: -200
- identifier: "faq"
name: "FAQ"
url: "/docs/faq/"
weight: -100
- identifier: "glossary"
name: "Glossary"
url: "/docs/glossary/"
weight: -90
- identifier: "updates"
name: "What's new"
weight: -80
markup:
goldmark:
parser:
attribute:
# enables adding CSS classes to block elements in markdown
block: true
renderer:
autoHeadingIDType: "github"
# mark unsafe html as true since api-documenter uses html snippets in markdown
unsafe: true
extensions:
definitionList: true
footnote: true
linkify: true
strikethrough: true
table: true
taskList: true
typographer: true
highlight:
codeFences: true
guessSyntax: true
hl_Lines: ""
lineNoStart: 1
# if you need to turn on line nos, use the highlight shortcode
lineNos: false
lineNumbersInTable: false
noClasses: false
tabWidth: 2
tableOfContents:
endLevel: 4
ordered: false
startLevel: 2