remark-lint rule to warn when GFM tables are indented. This package is part of the remark-lint ecosystem and checks that tables are not indented. It is ESM-only (requires Node.js 16+ and `remark-gfm` for GFM table support). The rule has no options and recommends no indentation for tables. It is included in the `remark-preset-lint-markdown-style-guide` preset. The plugin is a `Transformer` from unified. Current stable version is 5.0.1 released as part of the remark-lint monorepo. Release cadence is irregular, tied to the monorepo maintenance. Key differentiator: it only checks table indentation, making it lightweight and focused.
npm install remark-lint-no-table-indentationNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
This shows how to use the rule in a unified pipeline to lint a markdown string for indented GFM tables.
Convert to ESM with import syntax, or use dynamic import().
Ensure you use async/await or handle promises.
Install remark-gfm and add it to the unified pipeline before this rule.
Do not pass any options; the rule accepts none.
Run `npm install remark-lint-no-table-indentation` and ensure you are using ESM import.
Use ESM with `import` or `import()` dynamic import.