pdfmark.js
Version:
Highlight keywords in pdfjs svg output. Based on mark.js.
22 lines (21 loc) • 458 B
JavaScript
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;
}