
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Highlight keywords using JavaScript. Intended for every use case. Can e.g. be used to mark text in search results.
mark.js is a JavaScript library for highlighting text. It allows you to search for text within a web page and highlight it, making it useful for search functionality, text analysis, and more.
Basic Text Highlighting
This feature allows you to highlight specific text within a given context. In this example, the word 'highlight' will be highlighted within the element with the class 'context'.
const Mark = require('mark.js');
const context = document.querySelector('.context');
const instance = new Mark(context);
instance.mark('highlight');
Custom Highlighting Options
This feature allows you to customize the highlighting element and class. In this example, the word 'highlight' will be wrapped in a <span> element with the class 'custom-highlight'.
const Mark = require('mark.js');
const context = document.querySelector('.context');
const instance = new Mark(context);
instance.mark('highlight', {
'element': 'span',
'className': 'custom-highlight'
});
Unmarking Text
This feature allows you to remove all highlights within a given context. In this example, all highlights within the element with the class 'context' will be removed.
const Mark = require('mark.js');
const context = document.querySelector('.context');
const instance = new Mark(context);
instance.unmark();
highlight.js is a syntax highlighter written in JavaScript. It is used to highlight code syntax in web pages. Unlike mark.js, which is used for text highlighting, highlight.js is specifically designed for code syntax highlighting.
Prism is a lightweight, extensible syntax highlighter. It is used to highlight code syntax in web pages. Similar to highlight.js, Prism is focused on code syntax highlighting rather than general text highlighting like mark.js.
text-highlighter is a JavaScript library for highlighting text in web pages. It provides similar functionality to mark.js, allowing you to highlight text within a given context. However, it may not be as feature-rich or customizable as mark.js.
Please view the website for documentation and further information!
See the contribution guidelines.
Changes are documented in release descriptions.
You want to be notified about new releases? Click the "Subscribe to releases"
button on libraries.io.
Happy hacking!
FAQs
Highlight keywords using JavaScript. Intended for every use case. Can e.g. be used to mark text in search results.
We found that mark.js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.