UNPKG

@vivliostyle/vfm

Version:

Custom Markdown syntax specialized in book authoring.

14 lines (13 loc) 359 B
/** * derived from `remark-sectionize`. * original: 2019 Jake Low * modified: 2020 Yasuaki Uechi, 2021 and later is Akabeko * @license MIT * @see https://github.com/jake-low/remark-sectionize */ import { VFile } from 'vfile'; /** * Process Markdown AST. * @returns Transformer. */ export declare const mdast: () => (tree: Node, file: VFile) => void;