prevent-widows
Version:
Prevent widows from appearing in a string.
9 lines (8 loc) • 332 B
TypeScript
import type { Plugin } from "posthtml";
import { PreventWindowsOptions } from "..";
export type PosthtmlOptions = {
attrName: string;
attrRemove: boolean;
};
declare const posthtml: (customPosthtmlOptions?: Partial<PosthtmlOptions>, preventWidowsOptions?: PreventWindowsOptions) => Plugin<unknown>;
export default posthtml;