如果自述通过回购自动查看,自述文件中的相对链接断开
我在github上有一个回购组织。 例如:
MYORGANIZATION / MyRepository
回购包含一个README.md文件。
在这个README.md文件中,我有一个链接,所以另一个.md文件位于与README.md相同的文件夹中。
/README.md /anotherMarkdown.md
README.md包含一个相对链接(如此处所述:https://help.github.com/articles/relative-links-in-readmes/)到另一个Markdown.md:
[This is my relative link](anotherMarkdown.md)
如果我使用此URL打开自述文件,则相关链接将起作用:
https://github.com/MYORGANIZATION/MyRepository/blob/master/README.md
链接指向:
https://github.com/MYORGANIZATION/MyRepository/blob/master/anotherMarkdown.md
如果我打开Repository-URL https://github.com/MYORGANIZATION/MyRepository/,则会显示reposiutory的根目录以及文件列表下方的自述文件。
但是上面描述的相关链接现在被打破(给出404)并且指向:
https://github.com/MYORGANIZATION/MyRepository/anotherMarkdown.md
这是预期的行为吗? 我的链接有什么问题?
似乎被github修复。 再次在我身边工作。
链接地址: http://www.djcxy.com/p/20219.html上一篇: Relative link in readme broken if readme viewed automatically by repo