Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@bustle/mobiledoc-apple-news-renderer
Advanced tools
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.
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...'
},
...
]
}
*/
In browser:
npm start
CI:
npm test
Before publishing run npm run build
to generate the transpiled files in
dist/
FAQs
Renders Mobiledoc input to DOM output
The npm package @bustle/mobiledoc-apple-news-renderer receives a total of 2 weekly downloads. As such, @bustle/mobiledoc-apple-news-renderer popularity was classified as not popular.
We found that @bustle/mobiledoc-apple-news-renderer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 22 open source maintainers collaborating on the project.
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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.