Metalsmith FeedParser Plugin [](https://www.npmjs.org/package/metalsmith-feedparser)
October 23, 2015 ยท View on GitHub
Metalsmith plugin to import content from an RSS feed with FeedParser.
Installation
npm install --save metalsmith-feedparser
CLI
If you are using the command-line version of Metalsmith, you can install via npm, and then add the metalsmith-feedparser key to your metalsmith.json file:
{
"plugins": {
"metalsmith-feedparser": {}
}
}
JavaScript
If you are using the JS Api for Metalsmith, then you can require the module and add it to your .use() directives:
var feedparser = require('metalsmith-feedparser');
metalsmith.use(feedparser());
Usage
TODO: Add usage documentation.
License
MIT
