mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
8 lines
485 B
TypeScript
8 lines
485 B
TypeScript
import type { MarkedExtension } from 'marked';
|
|
import type { Options } from './types.js';
|
|
/**
|
|
* A [marked](https://marked.js.org/) extension to support [GFM footnotes](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#footnotes).
|
|
*/
|
|
export default function markedFootnote(options?: Options): MarkedExtension;
|
|
export type { Footnote, FootnoteRef, Footnotes, Options } from './types.js';
|