From 24fdbbbcfaface942ef3000e48564aa62af9ecd7 Mon Sep 17 00:00:00 2001
From: Hu Hao <huhao@outlook.com>
Date: Fri, 23 May 2014 15:45:58 +0800
Subject: fix script_url_for url bug

---
 plugins/gist_tag.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/gist_tag.rb b/plugins/gist_tag.rb
index 0a610dc3..51201156 100644
--- a/plugins/gist_tag.rb
+++ b/plugins/gist_tag.rb
@@ -44,7 +44,7 @@ module Jekyll
     end
 
     def script_url_for(gist_id, filename)
-      url = "https://gist.githubusercontent.com/#{gist_id}.js"
+      url = "https://gist.github.com/#{gist_id}.js"
       url = "#{url}?file=#{filename}" unless filename.nil? or filename.empty?
       url
     end
-- 
cgit v1.2.1