diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-09-03 09:18:43 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-09-03 09:18:43 -0500 |
commit | 17301879cd8dea6f8dc9c2ad085ea0eb3f72b2f1 (patch) | |
tree | 85f4c445c3392412ad4b52b18078fe4f06042c69 | |
parent | 4f9c45f24ac6c41cc8e91f25056681e98144b0f5 (diff) | |
download | my_new_personal_website-17301879cd8dea6f8dc9c2ad085ea0eb3f72b2f1.tar.xz my_new_personal_website-17301879cd8dea6f8dc9c2ad085ea0eb3f72b2f1.zip |
reverted back to \W in category_generator. Tracking on #128
-rw-r--r-- | plugins/category_generator.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/category_generator.rb b/plugins/category_generator.rb index f732fc1b..52f2d7ef 100644 --- a/plugins/category_generator.rb +++ b/plugins/category_generator.rb @@ -68,7 +68,7 @@ module Jekyll if self.layouts.key? 'category_index' dir = self.config['category_dir'] || 'categories' self.categories.keys.each do |category| - self.write_category_index(File.join(dir, category.gsub(/[_\P{word}]/, '-').gsub(/-{2,}/, '-')), category) + self.write_category_index(File.join(dir, category.gsub(/[_\W]/, '-').gsub(/-{2,}/, '-')), category) end # Throw an exception if the layout couldn't be found. @@ -105,7 +105,7 @@ module Jekyll def category_links(categories) dir = @context.registers[:site].config['category_dir'] categories = categories.sort!.map do |item| - "<a class='category' href='/#{dir}/#{item.gsub(/[_\P{word}]/, '-').gsub(/-{2,}/, '-')}/'>#{item}</a>" + "<a class='category' href='/#{dir}/#{item.gsub(/[_\W]/, '-').gsub(/-{2,}/, '-')}/'>#{item}</a>" end case categories.length |