
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular2-highlight-js
Advanced tools
[highlight.js](https://highlightjs.org) integration with Angular.
highlight.js integration with Angular.
npm install --save angular2-highlight-js@latest highlight.js
Add the highlight.js css for the style you want to use to your app's styles in angular.json.
"styles": [
"./node_modules/highlight.js/styles/monokai-sublime.css",
...
],
In app.module.ts import the highlight.js library and any languages you will be highlighting.
import { registerLanguage } from 'highlight.js';
import javascript from 'highlight.js/lib/languages/javascript';
import typescript from 'highlight.js/lib/languages/typescript';
registerLanguage('typescript', typescript);
registerLanguage('javascript', javascript);
Import the AngularHighlightJsModule.
import { AngularHighlightJsModule } from 'angular2-highlight-js';
@NgModule({
declarations: [AppComponent],
imports: [...AngularHighlightJsModule],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
This library contains the HighlightJsContentDirective Below are usage notes for each. A demo app is also available as in the repo.
Use this to highlight the contents of and element which will be set dynamically (by setting innerHTML for example).
Import the directive and declare it.
@Component({
selector: 'demo',
templateUrl: 'demo.component.html',
styleUrls: ['demo.component.css']
})
Add the attribute hljsContent to the element which will have content that requires highlighting. When the content is changed the directive will look for all child elements which match the selector provided and highlight them. If no selector is given it will default to finding all code elements.
<section [innerHTML]="sampleContent" hljsContent=".highlight"></section>
You can configure highlight.js by using the [options] property on the directive
<section
[innerHTML]="sampleContent"
hljsContent=".highlight"
[options]="{ useBr: true }"
></section>
FAQs
[highlight.js](https://highlightjs.org) integration with Angular.
The npm package angular2-highlight-js receives a total of 167 weekly downloads. As such, angular2-highlight-js popularity was classified as not popular.
We found that angular2-highlight-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.