myst-to-jats
Version:
Export from MyST Markdown to JATS
12 lines • 772 B
TypeScript
import type { Plugin } from 'unified';
import type { Options } from '../types.js';
import type { GenericParent } from 'myst-common';
export { definitionTransform, definitionPlugin } from './definitions.js';
export { containerTransform, containerPlugin } from './containers.js';
export { tableTransform, tablePlugin } from './tables.js';
export { sectionTransform, sectionPlugin } from './sections.js';
export { blockTransform, blockPlugin } from './blocks.js';
export { referenceTargetTransform, referenceResolutionTransform } from './references.js';
export declare function basicTransformations(tree: GenericParent, opts: Options): void;
export declare const basicTransformationsPlugin: Plugin<[Options], GenericParent, GenericParent>;
//# sourceMappingURL=index.d.ts.map