micromark-extension-taggable
Version:
Parse and Render custom #tags and @mentions
11 lines (10 loc) • 335 B
TypeScript
import { Options } from "./options";
import { Extension } from "micromark-util-types";
declare module "micromark-util-types" {
interface TokenTypeMap {
taggable: "taggable";
taggableMarker: "taggableMarker";
taggableValue: "taggableValue";
}
}
export declare function syntax(opts?: Options): Extension;