Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
code-line-numbers
Advanced tools
Add line numbers to your
<code>
snippets on the page, HighLight.js is also supported
Sometimes you need to add line numbers code sample on website pages. There is a list of ways to do it: from manual adding HTML code to using libraries like highlightjs-line-numbers.js for HighLight.js support (syntax highlighting).
But all existing solutions feel the lack in some features. This library fully implements all our needs including:
<pre><code>
and HighLight.js snippetsrequire
or import
instead of global variable)code
snippets on the page or just to specified onesWith npm installed, run
$ npm install code-line-numbers
<code>
snippets on the pageimport {CodeLineNumbers} from "code-line-numbers";
CodeLineNumbers.addCodeLineNumbersOnLoad();
If you use HighLight.js, please use this call right after hljs.initHighlighting()
.
In case you run this code inside DOMContentReady
listener use addCodeLineNumbers()
instead of addCodeLineNumbersOnLoad()
.
Passing some selector as argument to this function, only code
snippets matching this selector will be used. Default selector is pre > code
which means all your <pre><code></code></pre>
constructions match the selector. For adding line numbers only to some of your code snippets we recommend you to add data-line-numbers
attribute to <pre>
and use pre[data-line-numbers] > code
selector instead of default one.
<code>
snippetimport {CodeLineNumbers} from "code-line-numbers";
var elCode = document.querySelector("code#my-code-example");
CodeLineNumbers.addLineNumbersTo(elCode);
This code will add line numbers only to specified element passed as argument.
In order to redefine CSS for skinning purposed redeclare these two CSS selectors:
.hljs-line-numbers__number {
color: #8c8c8c;
background-color: #efefef;
padding: 3px 10px;
margin-right: 5px;
}
.hljs-line-numbers__number__zeros {
color: transparent;
}
Hint: setting color for .hljs-line-numbers__number__zeros
will show leading zeros in line numbers like 042
.
LGPL license - use it for free.
Star us on GitHub if you like this library.
FAQs
Adding line numbers for code, HighLight.js is supported too
We found that code-line-numbers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.