UNPKG

remark-lint-fenced-code-marker

Version:

remark-lint rule to warn when fenced code markers violate the given style

12 lines 347 B
export default remarkLintFencedCodeMarker; /** * Styles. */ export type Marker = "`" | "~"; /** * Configuration. */ export type Options = Marker | "consistent"; declare const remarkLintFencedCodeMarker: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map