@digitalocean/do-markdownit
Version:
Markdown-It plugin for the DigitalOcean Community.
18 lines (17 loc) • 429 B
TypeScript
declare namespace _exports {
export { LinkAttributesOptions };
}
declare const _exports: import('markdown-it').PluginWithOptions<LinkAttributesOptions>;
export = _exports;
type LinkAttributesOptions = {
/**
* Object or function to generate attributes for links.
*/
attributes: {
[x: string]: string;
} | ((arg0: {
[x: string]: string;
}) => {
[x: string]: string;
});
};