0.2.0 • Published 4 years ago

opmltotext v0.2.0

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

opmltotext

This is a node.js library that parses OPML and returns text. It generates output using specified indentation and comment prefix strings.

NPM

Installation

$ npm install opmltotext

Example

var fs = require('fs')
  , OpmlToText = require('opmltotext')

var opml = fs.readFileSync('example.opml', 'utf8')
var text = OpmlToText.getText(opml)

API

OpmlToText.getText(opmlText, commentPrefix, indentation)

  • opmlText String
  • commentPrefix String default '//'
  • indentation String default ' ' (two spaces)