Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/youngtailors/vuepress-plugin-rss
https://github.com/youngtailors/vuepress-plugin-rss
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/youngtailors/vuepress-plugin-rss
- Owner: youngtailors
- Created: 2018-04-23T08:59:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-30T11:12:33.000Z (about 5 years ago)
- Last Synced: 2024-07-18T11:06:04.029Z (4 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 17
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Vuepress Plugin RSS
> RSS Plugin for Vuepress
## Install
```
> yarn add vuepress-plugin-rss -D
# or
> npm i vuepress-plugin-rss -D
```## Config for your site
- Update your `.vuepress/config.js`
```js
module.exports = {
...
plugins: [
[
'vuepress-plugin-rss',
{
base_url: '/', // required
site_url: 'https://procollab.com', // required
copyright: '2018 Young Tailors', // optional
// filter some post
filter: (frontmatter) => { return [true|false] },
// How much articles
count: 20
}
]
]
}
```## Contributors
- Core Plugin - [dacsang97](https://github.com/dacsang97)
- Support Vuepress 1.0 - [tomieric](https://github.com/tomieric)---
License MIT