Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ember-prism
Advanced tools
This project aims to make re-usable ember components for PrismJS. This project is packaged as an EmberCLI addon.
For Ember <= 3.12 use version 0.7.0 of ember-prism.
Install the ember-cli addon in your ember-cli project:
ember install ember-prism
We have two main components, code-block
, and code-inline
. They'll take care of running Prism on your code as you transition.
They accept the code to be rendered by passing a @code
argument:
<CodeBlock @code="<a href='link'>value</a>" @language="markup" />
While both variants support all features, the former is preferable when the code content is subject to changes (re-rendering).
For the latter you may need to use <
, and >
html attributes to escape <
, and >
characters so they aren't removed by Handlebars.
The @language
argument is optional, and if passed should match one of Prism's supported languages.
If you have opted to use the line-numbers
plugin within your ember-cli-build.js
, then you can optionally pass in @start
to <CodeBlock/>
to set a custom starting line. This is particularly useful when showing "contiguous" hunks of code (while not showing the entire code file).
(within ember-cli-build.js
):
module.exports = function (defaults) {
let app = new EmberAddon(defaults, {
// other options
'ember-prism': {
plugins: ['line-numbers']
},
});
};
(in your component that renders a <CodeBlock />
)
<CodeBlock @code="<html lang='en'>" @start={{2}} />
This will result in the code block starting its line numbering from 2
, instead of 1
.
You can set which theme, components, and plugins you'd like to use from Prism.
// ember-cli-build.js
var app = new EmberApp({
'ember-prism': {
'theme': 'twilight',
'components': ['scss', 'javascript'], //needs to be an array, or undefined.
'plugins': ['line-highlight']
}
})
If you want to use the default theme, just remove the theme
option completely.
If you want hi-fi Glimmer / Ember highlighting, specify:
components: ['markup'],
and somewhere in your app:
import { setup } from 'ember-prism';
setup();
ember server
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versionsember serve
See the Contributing guide for details.
This project is licensed under the MIT License.
v1.0.0 (2024-07-02)
FAQs
Ember components for PrismJS
The npm package ember-prism receives a total of 4,733 weekly downloads. As such, ember-prism popularity was classified as popular.
We found that ember-prism demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.