From b3e7cefde46e20eafba97192a5d0220c8908e16b Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sun, 29 May 2016 21:22:03 -0400 Subject: [PATCH] Update documentation to reflect `category_archive` and `tag_archive` name changes. --- _docs/05-configuration.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/_docs/05-configuration.md b/_docs/05-configuration.md index bea32f17..8374c705 100644 --- a/_docs/05-configuration.md +++ b/_docs/05-configuration.md @@ -457,11 +457,14 @@ The theme ships with support for taxonomy (category and tag) pages. GitHub Pages The default `type` is set to use Liquid. +**Note:** `category_archive` and `tag_archive` were previously named `categories` and `tags`. Names were changed to avoid possible conflicts with `site.categories` and `site.tags`. +{: .notice--danger} + ```yaml -categories: +category_archive: type: liquid path: /categories/ -tags: +tag_archive: type: liquid path: /tags/ ``` @@ -476,10 +479,10 @@ If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll Change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md): ```yaml -categories: +category_archive: type: jekyll-archives path: /categories/ -tags: +tag_archive: type: jekyll-archives path: /tags/ jekyll-archives: