标签: github hyperlink download markdown github-flavored-markdown
我想在我的README.md中添加一个链接来下载文件(例如file.txt)。我尝试建立普通链接([click here](https://.../file.txt)),甚至尝试了<a href="https://.../file.txt" download="file.txt">click here</a>,但都没有成功。
README.md
file.txt
[click here](https://.../file.txt)
<a href="https://.../file.txt" download="file.txt">click here</a>
我该怎么办?
谢谢您的帮助。