1.0.0 • Published 8 years ago

distro-mic v1.0.0

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

Distro.Mic

Transform article HTML for Facebook Instant Articles, Apple News and Google AMP.

Note, this module is designed to transform article body only, other elements of the article page like header, byline and custom stylesheets should be added separately for each format.

USAGE

Install using npm:

npm install distro-mic
var format = require('distro-mic').format;
var html = '<p>Article HTML</p>'

var output = format(html);

Output:

{
  amp: '<article><p>Article HTML</p></article>',
  instantArticle: '<article><p>Article HTML</p></article>',
  appleNews: {
    article: [{
      text: 'Article HTML\n',
      additions: [],
      inlineTextStyles: [],
      role: 'body',
      layout: 'bodyLayout'
    }],
    bundlesToUrls: {}
  }
}

LICENSE

MIT