tshl
v1.0.3
Published
EQLayer to regex
Downloads
4
Readme
EQLayer Regex Replacer
EQLayer to regex
To install
yarn add tshl
Wrap
import EQL2RG from "tshl";
const EQ = new EQL2RG([{in:["abc","def"]}]);
EQ.html_wrap("xyz aabc yyy zzz","b"); // returns xyz a<b>abc</b> yyy zzz
Wrap HTML with custom class name
import EQL2RG from "tshl";
const EQ = new EQL2RG([{in:["abc","def"]}]);
EQ.html_wrap("xyz aabc yyy zzz","b","highlight"); // returns xyz a<b class="highlight">abc</b> yyy zzz
Turn off case sensitive
import EQL2RG from "tshl";
const EQ = new EQL2RG([{in:["abc","def"]}],false);