UNPKG

posthtml-external-link

Version:

Add 'rel="external noopener nofollow"' and 'target="_blank"' to all external links [PostHTML Plugin]

7 lines (6 loc) 213 B
import { Node } from 'posthtml'; export declare type Options = { exclude?: string | string[]; noreferrer?: boolean; }; export declare function posthtmlExternalLink(config?: Options): (tree: Node) => void;