UNPKG

remarkable-admonitions

Version:
19 lines 514 B
import Remarkable from 'remarkable'; export declare type AdmonitionOptions = { icon: 'svg-inline' | 'emoji'; }; /** * Remarkable plugin that recognizes callout syntax in markdown and renders * it in a dedicated paragraph. * * Example syntax: * * :::info * This is an information callout * ::: * * @todo Add opts to customize rendering. */ declare const plugin: (admonitionOpts?: AdmonitionOptions | undefined) => Remarkable.Plugin; export default plugin; //# sourceMappingURL=index.d.ts.map