Code Monkey home page Code Monkey logo

Comments (6)

MurhafSousli avatar MurhafSousli commented on August 18, 2024

Register the languages in your root module like the following:

import { HIGHLIGHT_OPTIONS } from 'ngx-highlightjs';

import xml from 'highlight.js/lib/languages/xml';
import scss from 'highlight.js/lib/languages/scss';
import typescript from 'highlight.js/lib/languages/typescript';

export function hljsLanguages() {
  return [
    {name: 'typescript', func: typescript},
    {name: 'scss', func: scss},
    {name: 'xml', func: xml}
  ];
}

@NgModule({
  providers: [
    {
      provide: HIGHLIGHT_OPTIONS,
      useValue: {
        languages: hljsLanguages
      }
    }
  ]
})

And then just import HighlightModule in your lazy modules

from ngx-highlightjs.

erichstark avatar erichstark commented on August 18, 2024

I have tried it that way, but it didnt work.
This is my guildelines - only one lazy module.

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HighlightModule } from 'ngx-highlightjs';

import { GuidelinesRoutingModule } from './guidelines-routing.module';
import { ButtonsComponent } from './buttons/buttons.component';

import xml from 'highlight.js/lib/languages/xml';
import scss from 'highlight.js/lib/languages/scss';
import typescript from 'highlight.js/lib/languages/typescript';

export function hljsLanguages() {
  return [
    {name: 'typescript', func: typescript},
    {name: 'scss', func: scss},
    {name: 'xml', func: xml}
  ];
}

@NgModule({
  declarations: [ButtonsComponent],
  imports: [
    CommonModule,
    GuidelinesRoutingModule,
    HighlightModule.forRoot({
      languages: hljsLanguages
    })
  ]
})
export class GuidelinesModule { }

Related route module

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

import { ButtonsComponent } from './buttons/buttons.component';

const routes: Routes = [
  {
    path: 'buttons',
    component: ButtonsComponent
  }
];

@NgModule({
  imports: [
    RouterModule.forChild(routes)
  ],
  exports: [RouterModule]
})
export class GuidelinesRoutingModule { }

And AppModule

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    AppRoutingModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on August 18, 2024

Please add a stackblitz reproduction

from ngx-highlightjs.

erichstark avatar erichstark commented on August 18, 2024

Here you are stackblitz

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on August 18, 2024

Ok, then import the language in the root module and highlightjs component in the lazy module

https://stackblitz.com/edit/ngx-highlightjs-g6rxq9?file=src/app/app.module.ts

from ngx-highlightjs.

erichstark avatar erichstark commented on August 18, 2024

Ok, I will. Thanks for your time.

from ngx-highlightjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.