Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjventurini/vuepress-plugin-zengarden-tags
Provides tags for your VuePress blog 🏷
https://github.com/tjventurini/vuepress-plugin-zengarden-tags
Last synced: 10 days ago
JSON representation
Provides tags for your VuePress blog 🏷
- Host: GitHub
- URL: https://github.com/tjventurini/vuepress-plugin-zengarden-tags
- Owner: tjventurini
- License: mit
- Created: 2020-05-16T21:18:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T21:22:10.000Z (over 4 years ago)
- Last Synced: 2023-12-10T12:23:20.849Z (11 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VuePress Plugin Zengarden Tags
Provides tags for your VuePress blog 🏷
## Installation
```bash
npm i --save-dev vuepress-plugin-zengarden-tags
# or
yarn add -D vuepress-plugin-zengarden-tags
```## Usage
Add the following to your `config.js` or `index.js` file.
```javascript
['zengarden-tags']
```You should now have `this.$tags` available.
## Configuration
```javascript
['zengarden-tags', {
key: 'tags', // the frontmatter key to look for
path: '/tags/', // the path to publish the generated pages under
title: 'Tags', // the title of the generated page
tag: 'Layout', // layout for single tag page
tags: 'Layout' // layout for the tags overview page
}]
```