UNPKG

remark-lint-emphasis-marker

Version:

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

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