astro-ghostcms/.pnpm-store/v3/files/65/c8130aa1fc2a3dd905c184fa199...

16 lines
361 B
Plaintext

/**
* remark plugin to implement SmartyPants.
*
* @type {import('unified').Plugin<[Options?] | void[], Root>}
*/
import { Options } from "retext-smartypants";
import { Transformer } from "unified";
import { Root } from "mdast";
export { Options };
export default function remarkSmartypants(
options?: void | Options,
): void | Transformer<Root, Root>;