diff options
Diffstat (limited to '')
-rw-r--r-- | plugins/gist_tag.rb | 2 | ||||
-rw-r--r-- | plugins/pygments_code.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gist_tag.rb b/plugins/gist_tag.rb index 946ea23f..ac5ee3c6 100644 --- a/plugins/gist_tag.rb +++ b/plugins/gist_tag.rb @@ -16,7 +16,7 @@ module Jekyll super @text = text @cache_disabled = false - @cache_folder = File.expand_path "../_gist_cache", File.dirname(__FILE__) + @cache_folder = File.expand_path "../.gist-cache", File.dirname(__FILE__) FileUtils.mkdir_p @cache_folder end diff --git a/plugins/pygments_code.rb b/plugins/pygments_code.rb index 67ce8c34..b87413f5 100644 --- a/plugins/pygments_code.rb +++ b/plugins/pygments_code.rb @@ -2,7 +2,7 @@ require 'pygments' require 'fileutils' require 'digest/md5' -PYGMENTS_CACHE_DIR = File.expand_path('../../_code_cache', __FILE__) +PYGMENTS_CACHE_DIR = File.expand_path('../../.pygments-cache', __FILE__) FileUtils.mkdir_p(PYGMENTS_CACHE_DIR) module HighlightCode |