A remark-lint rule that warns when strong (bold) markers are inconsistent. Version 4.0.1 is the latest stable release (ESM-only, Node.js 16+). It enforces a consistent style for strong markers (`*` or `_`) or auto-detects the first style used. Part of the remark-lint ecosystem with presets like `remark-preset-lint-consistent`. Ships TypeScript declarations. Has no runtime dependencies beyond remark-lint.
npm install remark-lint-strong-markerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Checks strong markers in example.md, reporting any inconsistent use.
Use import syntax (ESM). For CommonJS projects, use dynamic import: const m = await import('remark-lint-strong-marker')Ensure .use(remarkParse).use(remarkLint).use(remarkLintStrongMarker).use(remarkStringify) order
Specify options explicitly: .use(remarkLintStrongMarker, '*') or .use(remarkLintStrongMarker, '_')
Use separate remark-lint rules for emphasis markers (e.g., remark-lint-emphasis-marker).
Upgrade Node.js to version 16 or later.
Run: npm install remark-lint-strong-marker
Switch to ESM imports as shown above, or use dynamic import.
Add .use(remarkParse) before .use(remarkLintStrongMarker).
Use '*' or '_' as the option value.
No dependency data recorded yet.