myst-to-jats
Version:
Export from MyST Markdown to JATS
10 lines • 440 B
TypeScript
import type { Plugin } from 'unified';
import type { GenericParent } from 'myst-common';
/**
* Add parentheses and separator text to citeGroup nodes as children
*
* This allows us to simply render children and get all the correct formatting.
*/
export declare function citeGroupTransform(mdast: GenericParent): void;
export declare const citeGroupPlugin: Plugin<[], GenericParent, GenericParent>;
//# sourceMappingURL=citations.d.ts.map