A package to generate tags pages to github pages website
npm install github-pages-tags


jekyll is a static "language" so you have to generate each page as static file.After the package have been installed, this package modify the package.json and add to it a postcommit script.
This script is reading all the tags in the site and generate a .md file for each of them under /tags folder.
#### Step 1
``shell`
npm install github-pages-tags --save
#### Step 2
create a _tag.html_ in _layout_ folder which will be the tag template.
This file should looks like:
`ruby
---
layout: default
---
posts#### Step 3 (optinal)
You can custom the plugin behavior by creating ~~
github-pages-tags.config.js~~ github-pages-tags.config.json.Here are the options:
`js
{
// tag page title
"title": "{{tag}}}",
// tag page meta description
"description": "Here are all the posts that related to {{tag}}",
// generate only tag who have more than minPostCount posts. See link below:
"minPostCount": 0
}
`$3
- {{tag}} will be replaced by the actuall tag name.
- minPostCount` - (Why is good?)