
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
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 9,920 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.