UNPKG

remark-typography

Version:

Remark plugin to fix typography: quotes, dashes and so on.

8 lines (5 loc) 196 B
import { Plugin } from "unified"; import { Root } from "hast"; type UnifiedPlugin<T> = Plugin<[T], Root>; declare const fixTypography: UnifiedPlugin<any[]>; export { fixTypography as default };