marked-footnote
Version:
A marked extension to support GFM footnotes
6 lines (5 loc) • 315 B
TypeScript
import type { RendererExtension } from 'marked';
/**
* Returns an extension object for rendering the list of footnotes.
*/
export declare function createFootnotes(prefixId: string, prefixData: string, footnoteDivider: boolean, sectionClass: string, headingClass: string, backRefLabel: string): RendererExtension;