Socket
Socket
Sign inDemoInstall

@bustle/mobiledoc-apple-news-renderer

Package Overview
Dependencies
0
Maintainers
22
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bustle/mobiledoc-apple-news-renderer

Renders Mobiledoc input to DOM output


Version published
Weekly downloads
0
decreased by-100%
Maintainers
22
Install size
315 kB
Created
Weekly downloads
 

Changelog

Source

<small>0.3.5 (2019-04-12)</small>

  • 0.3.3 (7f23ed3)
  • 0.3.4 (0103fb8)
  • Adds list sections and list items renderer (df66fd8)
  • Creates wrapper 'p' to match other section types (2a2a55f)
  • Trim html to account for empty string sections (5982153)

<a name="0.3.2"></a>

Readme

Source

Mobiledoc Apple News Renderer

Renders mobiledoc to an array of apple news components. Supports mobiledoc version 0.3.0 and later. Supports Apple News format 1.4.

Apple News Format 1.0 Reference

The mapping in lib/utils/apple-news is used to map mobiledoc section tag names to Apple News component roles.

The renderer returns an render result that is a fully-realized (albeit unstyled) article.json. The article's components correspond to the rendered sections of the mobiledoc.

Usage

Must pass an htmlSerializer property to the renderer, as well as a dom property.

htmlSerializer is a function that will be called with a DOM (or SimpleDOM) element and it will return the serialized HTML as a string.

Example:

import Renderer from 'mobiledoc-apple-news-renderer';
import SimpleDOM from 'simple-dom';

let renderer = new Renderer(mobiledoc, {
  cards: [],
  dom: new SimpleDOM.Document(),
  htmlSerializer: (element) => {
    return new SimpleDOM.HTMLSerializer(SimpleDOM.voidMap).
             serializeChildren(element);
  }
});

let rendered = renderer.render();
let article = rendered.result;
/*
   article: {
     version: '1.0',
     title: 'Default Title',
     layout: {},
     ... other Apple News default properties
     components: [
       {
         role: 'body',
         format: 'html',
         text: 'The rendered HTML of the first mobiledoc section...'
       },
       ...
     ]
   }
 */

Running tests

In browser:

CI:

  • npm test

Publishing

Before publishing run npm run build to generate the transpiled files in dist/

Keywords

FAQs

Last updated on 12 Apr 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc