myst-to-jats
Version:
Export from MyST Markdown to JATS
13 lines • 489 B
TypeScript
import type { Plugin } from 'unified';
import type { GenericParent } from 'myst-common';
export type SupplementaryMaterial = {
type: 'supplementaryMaterial';
enumerator?: string;
figIdentifier?: string;
sourceUrl?: string;
sourceSlug?: string;
embedIdentifier?: string;
};
export declare function containerTransform(mdast: GenericParent): void;
export declare const containerPlugin: Plugin<[], GenericParent, GenericParent>;
//# sourceMappingURL=containers.d.ts.map