rehype-format
Version:
rehype plugin to format HTML
12 lines • 370 B
TypeScript
/**
* Format whitespace in HTML.
*
* @param {Options | null | undefined} [options]
* Configuration (optional).
* @returns
* Transform.
*/
export default function rehypeFormat(options?: Options | null | undefined): (tree: Root) => undefined;
import type { Options } from 'hast-util-format';
import type { Root } from 'hast';
//# sourceMappingURL=index.d.ts.map