Skip to content
Merged

fix #1074

Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ retry_wait_time = 4
accept = ["200", "429"]

verbose = "error"

# Exclude sitemap from link checking (it contains pre-publish production URLs)
exclude_path = ["sitemap\\.txt$"]
4 changes: 2 additions & 2 deletions docs/documentation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ docker run -it --rm --entrypoint bash --platform linux/amd64 sbryngelson/mfc:lat
**What's Next?**

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

## Details on Running Containers

Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ In brief, you can run the latest MFC container:
```bash
docker run -it --rm --entrypoint bash sbryngelson/mfc:latest-cpu
```
Please refer to the [Docker](https://mflowcode.github.io/documentation/docker.html) document for more information.
Please refer to the [Docker](docker.md) document for more information.

## Running the Test Suite

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

return "\n".join(lines)

Expand Down
Loading