@kohlmannj/opml-generator
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-alpha.1 • Public • Published

opml-generator.js Build Status

Generate opml from object.

Installation

npm install opml-generator

Usage

var header = {
    "title": "title-text",
    "dateCreated": new Date(2014, 2, 9),
    "ownerName": "azu"
};
var outlines = [
    {
        text: "txt",
        title: "title-text",
        type: "rss",
        "xmlUrl": "http://example.com/rss",
        "htmlUrl": "http://example.com/"
    },
    {
        text: "txt",
        title: "title-text",
        type: "rss",
        "xmlUrl": "http://example.com/rss",
        "htmlUrl": "http://example.com/"
    }
];
opml(header, outlines);// => XML

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT

Package Sidebar

Install

npm i @kohlmannj/opml-generator

Weekly Downloads

1

Version

2.0.0-alpha.1

License

MIT

Unpacked Size

59.7 kB

Total Files

49

Last publish

Collaborators

  • kohlmannj