UNPKG

remark-lint-hard-break-spaces

Version:

remark-lint rule to warn when too many spaces are used to create a hard break

14 lines 445 B
export default remarkLintHardBreakSpaces; /** * Configuration. */ export type Options = { /** * Allow trailing space hard breaks at all (default: `false`). * Use escape hard breaks otherwise */ allowSpaces?: boolean | null | undefined; }; declare const remarkLintHardBreakSpaces: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map