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