diff options
author | Parker Moore <parkrmoore@gmail.com> | 2014-05-23 17:51:12 -0400 |
---|---|---|
committer | Parker Moore <parkrmoore@gmail.com> | 2014-05-23 17:51:12 -0400 |
commit | 9bc4bb02ee3318d07b6b1ecd838a09461eff627b (patch) | |
tree | f7e76fc2c3935c49371a921360e0b7b6447513c4 | |
parent | ff1b10d0bcfdc44bbdf9c60dd0fe34c3a6ffe31a (diff) | |
parent | 24fdbbbcfaface942ef3000e48564aa62af9ecd7 (diff) | |
download | my_new_personal_website-9bc4bb02ee3318d07b6b1ecd838a09461eff627b.tar.xz my_new_personal_website-9bc4bb02ee3318d07b6b1ecd838a09461eff627b.zip |
Merge pull request #1567 from howiehu/fix-gist-url-bug
Update gist tag url to githubusercontent.com
-rw-r--r-- | plugins/gist_tag.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gist_tag.rb b/plugins/gist_tag.rb index 61a9cc1e..51201156 100644 --- a/plugins/gist_tag.rb +++ b/plugins/gist_tag.rb @@ -50,7 +50,7 @@ module Jekyll end def get_gist_url_for(gist, file) - "https://gist.github.com/raw/#{gist}/#{file}" + "https://gist.githubusercontent.com/raw/#{gist}/#{file}" end def cache(gist, file, data) |