diff --git a/plugins/category_generator.rb b/plugins/category_generator.rb index e636781..205022d 100644 --- a/plugins/category_generator.rb +++ b/plugins/category_generator.rb @@ -8,32 +8,6 @@ # # A generator that creates category pages for jekyll sites. # -# To use it, simply drop this script into the _plugins directory of your Jekyll site. You should -# also create a file called 'category_index.html' in the _layouts directory of your jekyll site -# with the following contents (note: you should remove the leading '# ' characters): -# -# ================================== COPY BELOW THIS LINE ================================== -# --- -# layout: default -# --- -# -#

{{ page.title }}

-# -# ================================== COPY ABOVE THIS LINE ================================== -# -# You can alter the _layout_ setting if you wish to use an alternate layout, and obviously you -# can change the HTML above as you see fit. -# -# When you compile your jekyll site, this plugin will loop through the list of categories in your -# site, and use the layout above to generate a page for each one with a list of links to the -# individual posts. -# # Included filters : # - category_links: Outputs the list of categories as comma-separated links. # - date_to_html_string: Outputs the post.date as formatted html, with hooks for CSS styling.