UNPKG

retext-diacritics

Version:

retext plugin to check for proper use of diacritics

10 lines (9 loc) 246 B
/** * Check for proper use of diacritics. * * @returns * Transform. */ export default function retextDiacritics(): (tree: Root, file: VFile) => undefined; export type Root = import('nlcst').Root; export type VFile = import('vfile').VFile;