Skip to content

Commit ab9a1fd

Browse files
authored
fix (#1074)
1 parent d8d9e25 commit ab9a1fd

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.lychee.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ retry_wait_time = 4
1515
accept = ["200", "429"]
1616

1717
verbose = "error"
18+
19+
# Exclude sitemap from link checking (it contains pre-publish production URLs)
20+
exclude_path = ["**/sitemap.txt"]

docs/documentation/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ docker run -it --rm --entrypoint bash --platform linux/amd64 sbryngelson/mfc:lat
3838
**What's Next?**
3939

4040
Once a container has started, the primary working directory is `/opt/MFC`, and all necessary files are located there.
41-
You can check out the usual MFC documentation, such as the [Example Cases](https://mflowcode.github.io/documentation/md_examples.html), to get familiar with running cases.
42-
Then, review the [Case Files](https://mflowcode.github.io/documentation/md_case.html) to write a custom case file.
41+
You can check out the usual MFC documentation, such as the [Example Cases](examples.md), to get familiar with running cases.
42+
Then, review the [Case Files](case.md) to write a custom case file.
4343

4444
## Details on Running Containers
4545

docs/documentation/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ In brief, you can run the latest MFC container:
173173
```bash
174174
docker run -it --rm --entrypoint bash sbryngelson/mfc:latest-cpu
175175
```
176-
Please refer to the [Docker](https://mflowcode.github.io/documentation/docker.html) document for more information.
176+
Please refer to the [Docker](docker.md) document for more information.
177177

178178
## Running the Test Suite
179179

toolchain/mfc/gen_case_constraints_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ def render_markdown(rules: Iterable[Rule]) -> str: # pylint: disable=too-many-l
918918
# Add a footer with link to full validator
919919
lines.append("\n---\n")
920920
lines.append("💡 **Tip:** If you encounter a validation error, check the relevant section above or ")
921-
lines.append("review [`case_validator.py`](../../toolchain/mfc/case_validator.py) for complete validation logic.\n")
921+
lines.append("review [`case_validator.py`](https://github.com/MFlowCode/MFC/blob/master/toolchain/mfc/case_validator.py) for complete validation logic.\n")
922922

923923
return "\n".join(lines)
924924

0 commit comments

Comments
 (0)