Highlighting Table text using mark.js
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js"></script>
<style>
mark {
background: yellow;
color: black;
}
</style>


Last updated
Was this helpful?
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js"></script>
<style>
mark {
background: yellow;
color: black;
}
</style>


Last updated
Was this helpful?
Was this helpful?
const context = document.querySelector('ub-smart-table');
const instance = new Mark(context);
instance.unmark();
instance.mark({{data}});