npm install tshl
yarn add tshl
`
Wrap
`typescript
import EQL2RG from "tshl";const EQ = new EQL2RG([{in:["abc","def"]}]);
EQ.html_wrap("xyz aabc yyy zzz","b"); // returns xyz aabc yyy zzz
`Wrap HTML with custom class name
`typescript
import EQL2RG from "tshl";const EQ = new EQL2RG([{in:["abc","def"]}]);
EQ.html_wrap("xyz aabc yyy zzz","b","highlight"); // returns xyz aabc yyy zzz
`Turn off case sensitive
`typescript
import EQL2RG from "tshl";const EQ = new EQL2RG([{in:["abc","def"]}],false);
``