Skip to content

eljun/webriq-roots-rss-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webriq roots rss generator

A WebriQ extension for static cms page that generate rss feed.

Installation

Open a separate terminal window and run:

$ npm i webriq-roots-rss-generator --save

Features

  • Create customize rss feed for your markdown files.
  • Create json out from your post files (soon)
  • Fast & easy to customize
  • Auto compile for every post change

Options

These are the available options you can set.

  • folder - sets the directory to scan for .md files eg: /posts
  • output - path to save compile rss feed.
  • maxcount - number of post to be compiled (default is 15).
  • json - path to save compile json file (soon).
  • settings - configures rss header, it has (5) five editable elements namely:
    • title - sets the header title
    • feed_url - the path for your feed url
    • site_url - your website domain
    • description - sets your rss description
    • generators - (this is optional)

Configurations

Go to app.coffee from your roots project directory and add the module.

var roots_rss_generator = require('webriq-roots-rss-generator')

Add in the extension instance.

extensions: [
    roots_rss_generator(
      folder: "posts"
      output: "feed.xml"
      maxcount: 5
      settings:
        title: "New title"
        feed_url: "http://mysite.com/feed.xml"
        site_url: "http://mysite.com"
        description: "This is new description"
      )
    ]

Other notes

Fixes

  • v2.0.2 : Remove Banner image in the footer if banner is not defined
  • v2.0.1 : Added customize banner in the body

##Contributing

This module is still at its early version so there could be some bug. Feel free to add suggestion's and fixes to help improve the module. I will do my best to improve the plugin so everyone will be happy. Thanks

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published