Reputation: 44061
For example I can access a twitter resource from the following
http://twitter.github.com/bootstrap/assets/css/bootstrap.css
When I try to access the 'raw' file from my own repository I get
https://raw.github.com/nodeninja/book/master/chapter02/bootstrap/public/stylesheets/docs.css
Which doesn't work correctly in a web page I'm guessing because of https. What's the correct way to do this link?
Upvotes: 1
Views: 129
Reputation: 44061
GitHub have a pages facility for doing this
This is what I wanted
http://nodeninja.github.com/book/chapter02/docs.css
Upvotes: 1