Several docs files contain broken internal links to other markdown files that have been moved or renamed:
| Source file | Broken link | Issue |
|------------|-------------|-------|
| docs/additional-configs.md | ../api_compatibility_policy.md | File has been moved or renamed |
| docs/deprecations.md | ../api_compatibility_policy.md | Same — points to non-existent file |
| docs/pipelines.md | runs.md (2 occurrences) | runs.md does not exist in docs/ |
| docs/podtemplates.md | #./workspaces.md | Malformed link (has #. prefix) |
for f in docs/*.md; do
grep -oP '\]\(([^)]+\.md)' "$f" | sed 's/\](//' | while read link; do
target="docs/$link"
[[ "$link" == ../* ]] && target="$link"
[ ! -f "$target" ] && [[ ! "$link" == http* ]] && echo "BROKEN: $f -> $link"
done
done
#./workspaces.md, fix the malformed anchor syntax/kind documentation