article-json-to-fbia

1.3.1 • Public • Published

article-json-to-fbia

Render article json in Facebook Instant Article Format

Build Status

Usage

npm install article-json-to-fbia
const convertToFbia = require('article-json-to-fbia');
const articleJson = [
  {
    type: 'paragraph',
    children: [
      {
        type: 'text',
        content: 'This is the text and '
      },
      {
        type: 'text',
        bold: true,
        content: 'some bold text '
      },
      {
        type: 'text',
        href: 'http://example.com',
        content: 'some link'
      }
    ]
  },
  {
    type: 'embed',
    embedType: 'image',
    src: 'http://example/image.jpg',
    width: 300,
    height: 150
  }
]
;
 
console.log(convertToFbia(articleJson));

Body format

https://github.com/micnews/html-to-article-json#format

License

MIT

Package Sidebar

Install

npm i article-json-to-fbia

Weekly Downloads

4

Version

1.3.1

License

MIT

Last publish

Collaborators

  • ellell
  • iefserge
  • kesla