
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
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.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.