Config

{
    "defaultUrl": "http://url-to-feed",
    "defaultRefresh": "60", // time in seconds for refresh
    "renderHtml": false, // in order to render description as html
    "defaultExtractors": {
        "title": "/*:rss/*:channel/*:title/text()",
        "link": "/*:rss/*:channel/*:link/text()",
        "description": "/*:rss/*:channel/*:description/text()",
        "language": "/*:rss/*:channel/*:language/text()",
        "items": "/*:rss/*:channel/*:item"
    },
    "defaultItemExtractors": {
        "link": {
            "key": "link",
            "match": [],
            "replace": []
        },
        "headline": {
            "key": "title",
            "match": [],
            "replace": []
        },
        "description": {
            "key": "description",
            "inLine": false,
            "match": [],
            "replace": []
        },
        "extra": [
            {
                "key": "pubDate",
                "match": [],
                "replace": []
            },
            {
                "key": "author",
                "match": [],
                "replace": []
            }
        ]
    }
}

Last updated