https://github.com/chrisyip/hexo-feed-generator
Generate atom feed for Hexo
https://github.com/chrisyip/hexo-feed-generator
Last synced: 8 months ago
JSON representation
Generate atom feed for Hexo
- Host: GitHub
- URL: https://github.com/chrisyip/hexo-feed-generator
- Owner: chrisyip
- License: mit
- Created: 2013-02-06T06:46:15.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-03-11T19:40:50.000Z (over 13 years ago)
- Last Synced: 2025-05-14T22:12:16.176Z (about 1 year ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feed generator plugin for [Hexo]
This plugin can generate Atom 1.0.
It's a fork of `hexo-generator-feed` in [hexo-plugins](https://github.com/tommy351/hexo-plugins) package.
It allows you to:
- Output categories and tags as catetory section in feed, original package only contain tags;
- Customize standard post and [linklog](http://en.wikipedia.org/wiki/Linklog) style.
## Usage
### Install
```
npm install git://github.com/ChrisYip/hexo-feed-generator.git
```
### Enable
Add `hexo-feed-generator` to `plugins` in `_config.yml`.
``` yaml
plugins:
- hexo-feed-generator
```
### Configuration
Add the following options to __global__ `config.yml`:
``` yaml
permalink_label_feed: "∞ Permalink"
linklog_marker: "→ "
linklog_marker_position_feed:
standard_post_marker:
standard_post_marker_position_feed:
```
Notes:
- Position aceept `before` and `after`, if not set as `after`, will use `before`;
- By default, linklog marker is `→`, permanlink label is `∞`.
Preview:

### Disable
Remove `hexo-feed-generator` from `plugins` in `_config.yml`.
``` yaml
plugins:
- hexo-feed-generator
```
### Update
Execute the following command.
```
npm update
```
### Uninstall
Execute the following command. Don't forget to disable the plugin before uninstalling.
```
npm uninstall hexo-feed-generator
```
[Hexo]: http://zespia.tw/hexo