Skip to content

Commit 9645d61

Browse files
committed
Fix docfx configuration schema
1 parent 9215819 commit 9645d61

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Documentation/docfx.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2+
"$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
23
"metadata": [
34
{
45
"src": [
56
{
6-
"files": ["*.csproj"],
7+
"files": [ "*.csproj" ],
78
"src": "../Xmss"
89
}
910
],
@@ -14,21 +15,21 @@
1415
"build": {
1516
"content": [
1617
{
17-
"files": ["**/*.{md,yml}"],
18-
"exclude": ["_site/**", "obj/**"]
18+
"files": [ "**/*.{md,yml}" ],
19+
"exclude": [ "_site/**", "obj/**" ]
1920
}
2021
],
2122
"resource": [
2223
{
23-
"files": [".nojekyll"]
24+
"files": [ ".nojekyll" ]
2425
},
2526
{
26-
"files": ["**"],
27+
"files": [ "**" ],
2728
"src": "../Examples/WebAssembly/bin/publish/wwwroot",
2829
"dest": "wasm-example"
2930
}
3031
],
31-
"postProcessors": ["ExtractSearchIndex"],
32+
"postProcessors": [ "ExtractSearchIndex" ],
3233
"globalMetadata": {
3334
"_appTitle": "XMSS",
3435
"_appName": "XMSS",
@@ -46,6 +47,6 @@
4647
"changefreq": "daily"
4748
},
4849
"output": "_site",
49-
"template": ["default", "modern", "template"]
50+
"template": [ "default", "modern", "template" ]
5051
}
5152
}

0 commit comments

Comments
 (0)