Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save git2358/ebbecc2ce76c8ff9f16f07c8a29166f7 to your computer and use it in GitHub Desktop.

Select an option

Save git2358/ebbecc2ce76c8ff9f16f07c8a29166f7 to your computer and use it in GitHub Desktop.
Bookmarklet to quickly switch between a repo and the gh-pages (github.io) view.
// Instructions. Save as a bookmark. Click when on a repo or github.io (gh-pages branch) site.
javascript:(function(h,p){
location = /io$/.test(h) ?
'https://github.com/' + h.split('.')[0] + p:
'http://'+ p.split('/')[1]+'.github.io'+ '/' + p.split('/').slice(2).join('/')
})(location.host,location.pathname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment