Skip to content

matej-cupka/ngx-markjs

 
 

Repository files navigation

ngx-markjs

It is Angular 8 wrapper for very cool text highlighting lib Mark.js

How to use

Install

npm i ngx-markjs

Import module

...
import {NgxMarkjsModule} from 'ngx-markjs';

@NgModule({
...
  imports: [
...
    NgxMarkjsModule
  ],
...
})
export class AppModule { }

Use directive

<div class="content_wrapper" 
     [markjsHighlight]="searchText"
     [markjsConfig]="config"
     [scrollToFirstMarked]="true"
>

If you want to use it from source code

Incase of some compilation issues you can try to import ngxMarkjsModule directly in your application from .ts file

import {NgxMarkjsModule} from 'ngx-markjs/src/public-api'; 

But in that case you should include path to module in tsconfig.json ('include' section).

Start demo project

Clone this repo and do install

npm install

ng serve

demo app

Additional mark.js config params can be found on its officail site

Did you Like this lib? Follow me on Twitter for more Angular and RxJS staff!

Need a mentorship for Angular and RxJS? Find me on codementor.io

About

Angular 8 wrapper for very cool text highlighting lib Mark.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 48.0%
  • HTML 36.8%
  • JavaScript 12.9%
  • CSS 2.3%