UNPKG

remark-lint-strong-marker

Version:

remark-lint rule to warn when importance (strong) markers violate the given style

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