
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
ember-cli-showdown
Advanced tools
This addon provides a component that transforms Markdown into valid HTML.
ember install ember-cli-showdown
Passing a markdown string inline:
<MarkdownToHtml @markdown="#Markdown is cool [link](http://emberjs.com)" />
<!-- Output -->
<h1>Markdown is cool <a href="http://emberjs.com">link</a></h1>
You can also pass a bound value:
<MarkdownToHtml @markdown={{postContent}} />
You can use configuration settings from Showdown:
<MarkdownToHtml
@markdown={{postContent}}
@strikethrough={{true}}
@literalMidWordUnderscores={{true}}
@simplifiedAutoLink={{true}}
/>
Global options are supported as of 2.11.x. This lets you define options that will be used for showdown options that were not provided as an attribute.
An example where you always want to auto link:
// config/environment.js
module.exports = function(environment) {
var ENV = {
showdown: {
simplifiedAutoLink: true
}
}
return ENV;
}
You can load Showdown Extensions by specifying the "extensions" property when initializing your component:
<MarkdownToHtml
@markdown={{postContent}}
@extensions={{myExtensionList}}
/>
<MarkdownToHtml
@markdown={{postContent}}
@extensions="foo bar baz"
/>
(myExtensionList
can be an array of strings or a space separated string)
Note that you'll have to register your extensions with Showdown first. For example, in an initializer:
// app/initializers/register-showdown-extensions.js
import showdown from 'showdown';
export function initialize() {
showdown.extension("myExtensionName", function() {
return [{
type: 'html',
regex: '<blockquote>',
replace: '<blockquote class="blockquote">'
}];
});
}
export default {
name: 'register-showdown-extensions',
initialize
};
showdown
is no longer supported. Must be imported via import showdown from 'showdown'
FastBoot.require('require')
with import showdown from 'showdown'
@markdown
argument to provide the markdown content to <MarkdownToHtml />
.See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
Ember component to render markdown into HTML.
The npm package ember-cli-showdown receives a total of 7,973 weekly downloads. As such, ember-cli-showdown popularity was classified as popular.
We found that ember-cli-showdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.