React component for a Textarea that supports highlighting.
function doHighlight(input) {
// return array or regex
}
<HighlightedTextarea highlight={doHighlight} />
function doHighlight(input) {
return [
[0, 5],
[17, 28],
[40, 60]
];
}
function doHighlight(input) {
return /\w+/g;
}
A React port of https://github.com/lonekorean/highlight-within-textarea