UNPKG

ng-katex-2

Version:

Angular module to write beautiful math expressions with TeX syntax boosted by KaTeX library

17 lines (13 loc) 576 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; import { FormsModule } from '@angular/forms'; import { KatexModule } from 'ng-katex-2'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent, ], bootstrap: [AppComponent], imports: [BrowserModule, FormsModule, KatexModule], providers: [provideHttpClient(withInterceptorsFromDi())] }) export class AppModule { }