1.0.6 • Published 1 year ago

rehype-target-blank v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

rehype-target-blank

Rehype plugin to set the target of <a/> to blank.

Install

This package is ESM-only: Node 12+ is needed to use it and it must be importeded instead of requiredd.

npm instal rehype-target-blank

How to use

Usage

import { rehype } from "rehype";
import rehypeTargetBlank from 'rehype-target-blank'

rehype()
  .use(rehypeTargetBlank)
  .process(/* some html */);

Example

// before
<a href="https://www.google.com">

// after
<a href="https://www.google.com" target="_blank">

License

License