123456789101112131415161718192021222324 |
- import { Line } from '../primitives.js';
- export type Parser = (block: Line[]) => Line[][];
- export type Fencer = (source: string) => boolean;
- export interface Options {
- fence: string | Fencer;
- }
- export default function getParser({ fence, }?: Partial<Options>): Parser;
|