Several links in the translated READMEs resolve relative to the doc/ directory, but still use paths appropriate for the repository-root README. This makes them return 404 on GitHub.
Examples on the current default branch:
- Russian:
assets/syntaxes/..., doc/alternatives.md, and the two license links at line 650
- Korean: the Manpage syntax link points to the old syntax path
- Japanese: the Manpage syntax link
- Chinese: the Manpage, assets guide, contributing guide, alternatives, and license links at lines 189, 451, 647, 669, and 677
The fixes appear to be path-only changes, for example:
assets/... → ../assets/...
doc/assets.md → assets.md
doc/alternatives.md → alternatives.md
CONTRIBUTING.md and LICENSE-* → ../CONTRIBUTING.md and ../LICENSE-*
- the Korean/Japanese Manpage target →
../assets/syntaxes/02_Extra/Manpage.sublime-syntax
I searched existing issues and found #3730 about translated README content inconsistencies, but not these broken relative targets specifically.
Several links in the translated READMEs resolve relative to the
doc/directory, but still use paths appropriate for the repository-root README. This makes them return 404 on GitHub.Examples on the current default branch:
assets/syntaxes/...,doc/alternatives.md, and the two license links at line 650The fixes appear to be path-only changes, for example:
assets/...→../assets/...doc/assets.md→assets.mddoc/alternatives.md→alternatives.mdCONTRIBUTING.mdandLICENSE-*→../CONTRIBUTING.mdand../LICENSE-*../assets/syntaxes/02_Extra/Manpage.sublime-syntaxI searched existing issues and found #3730 about translated README content inconsistencies, but not these broken relative targets specifically.