
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
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 8,019 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.