A remark-lint rule that warns when block quotes are indented too much or too little, checking the `>` marker and the spaces before content. The `remark-lint` ecosystem provides over 100 rules for linting Markdown. Current stable version 4.0.1 (ESM-only, requires Node.js 16+). Part of the unified/remark ecosystem, maintained by the remark team. Key differentiator: deeply integrated with remark-lint presets like `remark-preset-lint-consistent` and `remark-preset-lint-markdown-style-guide`.
npm install remark-lint-blockquote-indentationNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to apply the rule with a specific indentation option (2 spaces) and report lint warnings.
Use `import` syntax instead of `require()`, or switch to v3.x if you need CommonJS.
Ensure you pass either a number or the string 'consistent' (not a boolean or other string).
Understand that the rule only validates spacing after the final `>` marker, not the nesting depth.
Consult preset docs for recommended options; this rule's preset options are noted in the README.
Run `npm install remark-lint-blockquote-indentation` and use `import` syntax (Node 16+).
Use default import: `import remarkLintBlockquoteIndentation from 'remark-lint-blockquote-indentation'`.
Ensure you call `.use(remarkLint)` before `.use(remarkLintBlockquoteIndentation)` in the unified pipeline.