Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
ember-mobiledoc-dom-renderer
Advanced tools
Provides:
{{render-mobiledoc}}
for rendering mobiledoc in your ember appmobiledoc-dom-renderer
classTo learn more about mobiledoc see mobiledoc-kit.
ember install ember-mobiledoc-dom-renderer
{{render-mobiledoc mobiledoc=myMobileDoc}}
{{! myMobiledoc is the mobiledoc you want to render }}
{{! myCardNames is an array of card names, e.g. ['embed-card', 'slideshow-card'] }}
{{render-mobiledoc mobiledoc=myMobileDoc cardNames=myCardNames}}
The ember components with names matching the mobiledoc card names will be rendered
and passed a payload
property.
The ember components will be in a wrapper div with the class '__rendered-mobiledoc-card' and '__rendered-mobiledoc-card-${cardName}'.
If your mobiledoc card names do not match component names, you can subclass
the render-mobiledoc
component and override its cardNameToComponentName
method.
E.g.:
// components/my-render-mobiledoc.js
import RenderMobiledoc from 'ember-mobiledoc-dom-renderer/components/render-mobiledoc';
export default RenderMobiledoc.extend({
cardNameToComponentName(mobiledocCardName) {
return 'cards/' + mobiledocCardName;
}
});
This addon provides the mobiledoc-dom-renderer directly. Most of the time
you will want to use the {{render-mobiledoc}}
component, but if you need
to use the renderer directly in code, it can be imported:
import DOMRenderer from 'ember-mobiledoc-dom-renderer'
;
To release a new version:
np
(npm install -g np
)np <version>
(e.g. np 1.0.0
)git push <origin> --tags
FAQs
provides a runtime mobiledoc dom-renderer to ember apps
The npm package ember-mobiledoc-dom-renderer receives a total of 46 weekly downloads. As such, ember-mobiledoc-dom-renderer popularity was classified as not popular.
We found that ember-mobiledoc-dom-renderer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.