UNPKG

legal-markdown-js

Version:

Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version

13 lines 436 B
import { PandocParser, PandocOptions } from '../pandoc-parser'; /** * Native pandoc implementation for Node.js */ export declare class PandocNative implements PandocParser { private options; constructor(options?: PandocOptions); /** * Convert content using native pandoc binary */ convert(content: string, from: 'rst' | 'latex', to: 'markdown'): Promise<string>; } //# sourceMappingURL=pandoc-native.d.ts.map