Skip to content

Commit 1994578

Browse files
Merge pull request #14 from AristurtleDev/feature/link-errors
Treat Invalid Links as Errors
2 parents 76949a9 + e734239 commit 1994578

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/pullrequest.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
steps:
2626
- name: Clone Repository
2727
uses: actions/checkout@v4
28+
with:
29+
submodules: recursive
2830

2931
- name: Setup .NET SDK
3032
uses: actions/setup-dotnet@v4

api/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Welcome to the **MonoGame** reference documentation!
77

88
This area provides detailed information on each class and method in the API.
99

10-
Please view the [documentation](../articles/) for how to get started and step-by-step guidance.
10+
Please view the [documentation](../articles/index.md) for how to get started and step-by-step guidance.

articles/toc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
- name: Help and Support
6868
href: help_and_support.md
6969
- name: Contributing to documentation
70-
href: contributing
70+
href: contributing.md

docfx.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
"EnumSortOrder": "alphabetic"
2020
}
2121
],
22+
"rules": {
23+
"InvalidFileLink": "error",
24+
"InvalidBookmark": "error",
25+
"UidNotFound": "error",
26+
"ReferencedXrefPropertyNotString": "error"
27+
},
2228
"build": {
2329
"content": [
2430
{
@@ -34,7 +40,8 @@
3440
"foundation/**/*.md",
3541
"toc.yml",
3642
"*.md"
37-
]
43+
],
44+
"exclude": [ "_site/**", "README.md" ]
3845
}
3946
],
4047
"resource": [

external/MonoGame

Submodule MonoGame updated 56 files

0 commit comments

Comments
 (0)