10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { PluginSimple } from 'markdown-it';
|
|
|
|
/**
|
|
* Forked from https://github.com/markdown-it/markdown-it-sup/blob/master/index.mjs
|
|
*/
|
|
|
|
declare const sup: PluginSimple;
|
|
|
|
export { sup };
|