Github-pages: download version

I have a repository at https://github.com/parsiad/mlinterp .

Although I did release the project, the corresponding download link does not appear on the https://parsiad.github.io/mlinterp/ page (I used gh-pages to create this page).

Any suggestions for downloading the usual "tarball / zip" download links?

+3


source to share


1 answer


It looks like you are using the auto-generated GitHub Pages site. To get download links on your site, you have three options.



  • Add download links at the top of your README.md. Zip link: ( https://github.com/parsiad/mlinterp/archive/v0.1.zip ) and ball link ( https://github.com/parsiad/mlinterp/archive/v0.1. tar.gz ). You can create links in Markdown easily; instructions for links can be found here . After adding links to your README.md, they will appear on your auto-generated site.
  • Change the theme to Modernist , which comes with default download links.
  • Instead of automatically creating a GitHub Pages site, pull it into your repository and push your changes to it. You can then add a link to the top of your theme next to the one that already exists.
+2


source







All Articles