article-json-to-fbia

transform article-json to Facebook's instant-articles

Usage no npm install needed!

<script type="module">
  import articleJsonToFbia from 'https://cdn.skypack.dev/article-json-to-fbia';
</script>

README

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