remark-lint-link-title-style
Version:
remark-lint rule to warn when link and definition titles occur with incorrect quotes
12 lines • 349 B
TypeScript
export default remarkLintLinkTitleStyle;
/**
* Configuration.
*/
export type Options = Style | "consistent";
/**
* Styles.
*/
export type Style = "\"" | "'" | "()";
declare const remarkLintLinkTitleStyle: import("unified-lint-rule").Plugin<Root, Options | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map