New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rehype-highlight-code-lines

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rehype-highlight-code-lines

Rehype plugin to add line numbers to code blocks and allow highlighting of desired code lines

0.0.3
Source
npm
Version published
Weekly downloads
969
-21.54%
Maintainers
0
Weekly downloads
 
Created
Source

rehype-highlight-code-lines

NPM version NPM downloads Build codecov type-coverage typescript License

This package is a unified (rehype) plugin to add container to each line in a code block, allowing numbering of the code block and highlighting desired lines of code.

unified is a project that transforms content with abstract syntax trees (ASTs) using the new parser micromark. remark adds support for markdown to unified. mdast is the Markdown Abstract Syntax Tree (AST) which is a specification for representing markdown in a syntax tree. "rehype" is a tool that transforms HTML with plugins. "hast" stands for HTML Abstract Syntax Tree (HAST) that rehype uses.

This plugin allows adding line numbers to code blocks and highlighting of desired code lines.

When should I use this?

The rehype-highlight-code-lines is useful if you want to add line numbers to code blocks and want to highlight desired code lines.

The rehype-highlight-code-lines is NOT code highlighter and does NOT provide code highlighting! You can use a code highlighter for example rehype-highlight to highlight the code, then use the rehype-highlight-code-lines after.

[!IMPORTANT] If the code highlighter already provides numbering and highlighting code lines, don't use rehype-highlight-code-lines!

You can use rehype-highlight-code-lines even without a code highlighter.

Installation

This package is suitable for ESM only. In Node.js (version 16+), install with npm:

npm install rehype-highlight-code-lines

or

yarn add rehype-highlight-code-lines

Usage

In a code fence, just after the language of the code block,

  • specify a range of number in curly braces in order to highlight desired code lines,
  • and/or add showLineNumbers in order to add numbering to code lines.

```[language] {2,4-6} showLineNumbers

```[language] showLineNumbers {2}

```[language] {1-3}

```[language] showLineNumbers

You can use the specifiers without a language.

```{5} showLineNumbers

```showLineNumbers {5}

```{2,3}

```showLineNumbers

Say we have the following markdown file, example.md:

```javascript {2} showLineNumbers
let a1;
let a2;
let a3;
```

I assume you use rehype-highlight for code highlighting. Our module, example.js, looks as follows:

import { read } from "to-vfile";
import remark from "remark";
import gfm from "remark-gfm";
import remarkRehype from "remark-rehype";
import rehypeHighlight from "rehype-highlight";
import rehypeHighlightLines from "rehype-highlight-code-lines";
import rehypeStringify from "rehype-stringify";

main();

async function main() {
  const file = await remark()
    .use(gfm)
    .use(remarkRehype)
    .use(rehypeHighlight)
    .use(rehypeHighlightLines)
    .use(rehypeStringify)
    .process(await read("example.md"));

  console.log(String(file));
}

Now, running node example.js you will see that each line of code is wrapped in a div, which has appropriate class names (code-line, numbered-code-line, highlighted-code-line) and line numbering attribute data-line-number.

<pre>
  <code class="hljs language-javascript">
    <div class="code-line numbered-code-line" data-line-number="1">
      <span class="hljs-keyword">let</span> a1;
    </div>
    <div
      class="code-line numbered-code-line highlighted-code-line" data-line-number="2">
      <span class="hljs-keyword">let</span> a2;
    </div>
    <div class="code-line numbered-code-line" data-line-number="3">
      <span class="hljs-keyword">let</span> a3;
    </div>
  </code>
</pre>

Without rehype-highlight-code-lines, the lines of code wouldn't be in a div.

<pre>
  <code class="hljs language-javascript">
    <span class="hljs-keyword">let</span> a1;
    <span class="hljs-keyword">let</span> a2;
    <span class="hljs-keyword">let</span> a3;
  </code>
</pre>

Note: hljs prefix comes from rehype-highlight.

Options

All options are optional and have default values.

type HighlightLinesOptions = {
  showLineNumbers?: boolean; // default is "false"
  lineContainerTagName?: "div" | "span"; // default is "span"
};

use(rehypeHighlightLines, HighlightLinesOptions);
showLineNumbers

It is a boolean option which is for all code blocks will be numbered.

By default, it is false.

use(rehypeHighlightLines, {
  showLineNumbers: true,
});

Now, all code blocks will become numbered by line.

lineContainerTagName

It is a union type option which is "div" | "span" for providing custom HTML tag name for code lines.

By default, it is span which is inline level container. If you set it as div, the container will be block level, in perspective of CSS.

use(rehypeHighlightLines, {
  lineContainerTagName: "div",
});

Now, the code line container's tag name will be div.

Examples:

use(rehypeHighlightLines);

// all code blocks will be numbered in MDX/markdown source
use(rehypeHighlightLines, {showLineNumbers: true});

Syntax tree

This plugin modifies the hast (HTML abstract syntax tree).

Types

This package is fully typed with TypeScript.

The plugin exports the type HighlightLinesOptions.

Compatibility

This plugin works with rehype-parse version 1+, rehype-stringify version 1+, rehype version 1+, and unified version 4+.

Security

Use of rehype-highlight-code-lines involves rehype (hast), but doesn't lead to cross-site scripting (XSS) attacks.

My Plugins

I like to contribute the Unified / Remark / MDX ecosystem, so I recommend you to have a look my plugins.

My Remark Plugins

My Rehype Plugins

My Recma Plugins

  • recma-mdx-escape-missing-components – Recma plugin to set the default value () => null for the Components in MDX in case of missing or not provided so as not to throw an error
  • recma-mdx-change-props – Recma plugin to change the props parameter into the _props in the function _createMdxContent(props) {/* */} in the compiled source in order to be able to use {props.foo} like expressions. It is useful for the next-mdx-remote or next-mdx-remote-client users in nextjs applications.

License

MIT License © ipikuka

Keywords

🟩 unified 🟩 rehype 🟩 rehype plugin 🟩 hast 🟩 markdown 🟩 rehype-highlight

Keywords

unified

FAQs

Package last updated on 20 Jun 2024

Did you know?

Socket

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.

Install

Related posts