remark-lint-table-pipe-alignment
Version:
remark-lint rule to warn when table pipes are not aligned
13 lines • 413 B
TypeScript
export default remarkLintTablePipeAlignment;
/**
* Configuration.
*/
export type Options = {
/**
* Function to detect cell size (optional).
*/
stringLength?: ((value: string) => number) | null | undefined;
};
declare const remarkLintTablePipeAlignment: import("unified-lint-rule").Plugin<Root, Options | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map