Repository URL to install this package:
|
Version:
3.1.7 ▾
|
import MarkJS from './lib/mark';
export default function Mark(ctx) {
const instance = new MarkJS(ctx);
this.mark = (sv, opt) => {
instance.mark(sv, opt);
return this;
};
this.markRegExp = (sv, opt) => {
instance.markRegExp(sv, opt);
return this;
};
this.markRanges = (sv, opt) => {
instance.markRanges(sv, opt);
return this;
};
this.unmark = (opt) => {
instance.unmark(opt);
return this;
};
return this;
}