remarkable-admonitions
Version:
A remarkable plugin to add admonitions support
19 lines • 514 B
TypeScript
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