An open API service indexing awesome lists of open source software.

https://github.com/hexojs/hexo-migrator-rss

RSS migrator for Hexo.
https://github.com/hexojs/hexo-migrator-rss

hexo hexo-plugin

Last synced: 5 months ago
JSON representation

RSS migrator for Hexo.

Awesome Lists containing this project

README

          

# hexo-migrator-rss

[![Build Status](https://img.shields.io/github/actions/workflow/status/hexojs/hexo-migrator-rss/tester.yml?branch=master&label=test)](https://github.com/hexojs/hexo-migrator-rss/actions?query=workflow%3ATester)
[![NPM version](https://badge.fury.io/js/hexo-migrator-rss.svg)](https://www.npmjs.com/package/hexo-migrator-rss)

Migrate your blog from Atom/RSS to [Hexo].

## Install

``` bash
$ npm install hexo-migrator-rss --save
```

## Usage

Execute the following command after installed. `source` is the file path or URL of Atom/RSS.

``` bash
$ hexo migrate rss [--options]
```

- **alias**: Populates the `alias` setting in the front-matter, for use with the [hexo-generator-alias](http://github.com/hexojs/hexo-generator-alias) module. This is useful for generating redirects.
- **limit**: Maximum number of posts to import from the feed. All posts are imported by default.
* Example:
``` bash
$ hexo migrate rss /path/atom.xml --limit 3
```
- **skipduplicate**: Skip posts with similar title as existing ones.
* If a feed contains a post titled 'Foo Bar' and there is an existing post named 'Foo-Bar.md', then that post will not be migrated.
* The comparison is case-insensitive; a post titled 'FOO BAR' will be skipped if 'foo-bar.md' exists.
* Without this option (default), this plugin will continue to migrate that post and create a post named 'Foo-Bar-1.md'

[Hexo]: https://hexo.io/