dotmd-cli 0.22.0 → 0.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotmd-cli",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "CLI for managing markdown documents with YAML frontmatter — index, query, validate, graph, export, Notion sync, AI summaries.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -8,7 +8,7 @@ import { bold, green, yellow, dim } from './color.mjs';
8
8
  const HEADING_RENAMES = [
9
9
  { from: /^##\s+Open questions\s*$/gm, to: '## Open Questions' },
10
10
  { from: /^##\s+open questions\s*$/gm, to: '## Open Questions' },
11
- { from: /^##\s+Out of scope\s*$/gm, to: '## Non-Goals' },
11
+ { from: /^##\s+Out of [Ss]cope\s*$/gm, to: '## Non-Goals' },
12
12
  { from: /^##\s+out of scope\s*$/gm, to: '## Non-Goals' },
13
13
  { from: /^##\s+Non-goals\s*$/gm, to: '## Non-Goals' },
14
14
  ];