docrev 0.10.2 → 0.11.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/CHANGELOG.md +13 -0
- package/README.md +2 -0
- package/dist/lib/anchor-match.d.ts +3 -1
- package/dist/lib/anchor-match.d.ts.map +1 -1
- package/dist/lib/anchor-match.js +5 -7
- package/dist/lib/anchor-match.js.map +1 -1
- package/dist/lib/annotations.d.ts +0 -6
- package/dist/lib/annotations.d.ts.map +1 -1
- package/dist/lib/annotations.js +26 -8
- package/dist/lib/annotations.js.map +1 -1
- package/dist/lib/build.d.ts +52 -0
- package/dist/lib/build.d.ts.map +1 -1
- package/dist/lib/build.js +135 -6
- package/dist/lib/build.js.map +1 -1
- package/dist/lib/commands/build.d.ts.map +1 -1
- package/dist/lib/commands/build.js +39 -12
- package/dist/lib/commands/build.js.map +1 -1
- package/dist/lib/commands/doi.d.ts.map +1 -1
- package/dist/lib/commands/doi.js +14 -2
- package/dist/lib/commands/doi.js.map +1 -1
- package/dist/lib/commands/sync.d.ts.map +1 -1
- package/dist/lib/commands/sync.js +24 -11
- package/dist/lib/commands/sync.js.map +1 -1
- package/dist/lib/comment-realign.d.ts +12 -21
- package/dist/lib/comment-realign.d.ts.map +1 -1
- package/dist/lib/comment-realign.js +40 -348
- package/dist/lib/comment-realign.js.map +1 -1
- package/dist/lib/dependencies.d.ts +10 -0
- package/dist/lib/dependencies.d.ts.map +1 -1
- package/dist/lib/dependencies.js +41 -9
- package/dist/lib/dependencies.js.map +1 -1
- package/dist/lib/doi.d.ts.map +1 -1
- package/dist/lib/doi.js +68 -80
- package/dist/lib/doi.js.map +1 -1
- package/dist/lib/errors.d.ts.map +1 -1
- package/dist/lib/errors.js +3 -1
- package/dist/lib/errors.js.map +1 -1
- package/dist/lib/import.d.ts +7 -4
- package/dist/lib/import.d.ts.map +1 -1
- package/dist/lib/import.js +58 -62
- package/dist/lib/import.js.map +1 -1
- package/dist/lib/ooxml.d.ts +207 -0
- package/dist/lib/ooxml.d.ts.map +1 -0
- package/dist/lib/ooxml.js +634 -0
- package/dist/lib/ooxml.js.map +1 -0
- package/dist/lib/rate-limiter.d.ts +8 -0
- package/dist/lib/rate-limiter.d.ts.map +1 -1
- package/dist/lib/rate-limiter.js +41 -4
- package/dist/lib/rate-limiter.js.map +1 -1
- package/dist/lib/trackchanges.d.ts +41 -25
- package/dist/lib/trackchanges.d.ts.map +1 -1
- package/dist/lib/trackchanges.js +90 -151
- package/dist/lib/trackchanges.js.map +1 -1
- package/dist/lib/types.d.ts +9 -8
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/word-extraction.d.ts.map +1 -1
- package/dist/lib/word-extraction.js +48 -307
- package/dist/lib/word-extraction.js.map +1 -1
- package/dist/lib/word.d.ts.map +1 -1
- package/dist/lib/word.js +80 -175
- package/dist/lib/word.js.map +1 -1
- package/dist/lib/wordcomments.d.ts.map +1 -1
- package/dist/lib/wordcomments.js +53 -92
- package/dist/lib/wordcomments.js.map +1 -1
- package/lib/anchor-match.ts +6 -7
- package/lib/annotations.ts +28 -8
- package/lib/build.ts +196 -6
- package/lib/commands/build.ts +42 -12
- package/lib/commands/doi.ts +17 -1
- package/lib/commands/sync.ts +26 -13
- package/lib/comment-realign.ts +46 -464
- package/lib/dependencies.ts +43 -9
- package/lib/doi.ts +76 -94
- package/lib/errors.ts +5 -1
- package/lib/import.ts +65 -70
- package/lib/ooxml.ts +768 -0
- package/lib/rate-limiter.ts +37 -4
- package/lib/trackchanges.ts +102 -183
- package/lib/types.ts +9 -13
- package/lib/word-extraction.ts +49 -330
- package/lib/word.ts +86 -203
- package/lib/wordcomments.ts +53 -104
- package/package.json +137 -137
- package/skill/REFERENCE.md +14 -3
- package/skill/SKILL.md +12 -5
- package/types/index.d.ts +16 -10
package/lib/rate-limiter.ts
CHANGED
|
@@ -7,6 +7,21 @@ export interface RateLimiterOptions {
|
|
|
7
7
|
maxDelay?: number;
|
|
8
8
|
maxRetries?: number;
|
|
9
9
|
backoffFactor?: number;
|
|
10
|
+
/** Per-request timeout in ms; a stalled connection aborts instead of hanging. */
|
|
11
|
+
requestTimeout?: number;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Parse an HTTP `Retry-After` header, which may be a delay in seconds or an
|
|
16
|
+
* HTTP-date. Returns the delay in milliseconds, or null when unparseable.
|
|
17
|
+
*/
|
|
18
|
+
export function parseRetryAfter(value: string | null, now: number = Date.now()): number | null {
|
|
19
|
+
if (!value) return null;
|
|
20
|
+
const seconds = Number(value);
|
|
21
|
+
if (Number.isFinite(seconds)) return Math.max(0, seconds * 1000);
|
|
22
|
+
const date = Date.parse(value);
|
|
23
|
+
if (!Number.isNaN(date)) return Math.max(0, date - now);
|
|
24
|
+
return null;
|
|
10
25
|
}
|
|
11
26
|
|
|
12
27
|
export class RateLimiter {
|
|
@@ -14,6 +29,7 @@ export class RateLimiter {
|
|
|
14
29
|
private maxDelay: number;
|
|
15
30
|
private maxRetries: number;
|
|
16
31
|
private backoffFactor: number;
|
|
32
|
+
private requestTimeout: number;
|
|
17
33
|
private lastRequestTime: number;
|
|
18
34
|
private currentDelay: number;
|
|
19
35
|
private consecutiveErrors: number;
|
|
@@ -23,6 +39,7 @@ export class RateLimiter {
|
|
|
23
39
|
this.maxDelay = options.maxDelay || 30000; // Max delay after backoff (ms)
|
|
24
40
|
this.maxRetries = options.maxRetries || 3; // Max retry attempts
|
|
25
41
|
this.backoffFactor = options.backoffFactor || 2;
|
|
42
|
+
this.requestTimeout = options.requestTimeout || 15000; // Abort a stalled request
|
|
26
43
|
this.lastRequestTime = 0;
|
|
27
44
|
this.currentDelay = this.minDelay;
|
|
28
45
|
this.consecutiveErrors = 0;
|
|
@@ -54,17 +71,27 @@ export class RateLimiter {
|
|
|
54
71
|
|
|
55
72
|
async fetchWithRetry(url: string, options: RequestInit = {}): Promise<Response> {
|
|
56
73
|
let lastError: Error | undefined;
|
|
74
|
+
const callerSignal = options.signal ?? undefined;
|
|
57
75
|
|
|
58
76
|
for (let attempt = 0; attempt <= this.maxRetries; attempt++) {
|
|
59
77
|
await this.wait();
|
|
60
78
|
|
|
79
|
+
// Bound each attempt so a half-open connection cannot hang the run
|
|
80
|
+
// forever; merge the caller's signal so an external cancel still works.
|
|
81
|
+
const controller = new AbortController();
|
|
82
|
+
const timer = setTimeout(() => controller.abort(new Error('Request timed out')), this.requestTimeout);
|
|
83
|
+
const onCallerAbort = () => controller.abort((callerSignal as AbortSignal).reason);
|
|
84
|
+
if (callerSignal) {
|
|
85
|
+
if (callerSignal.aborted) controller.abort(callerSignal.reason);
|
|
86
|
+
else callerSignal.addEventListener('abort', onCallerAbort, { once: true });
|
|
87
|
+
}
|
|
88
|
+
|
|
61
89
|
try {
|
|
62
|
-
const response = await fetch(url, options);
|
|
90
|
+
const response = await fetch(url, { ...options, signal: controller.signal });
|
|
63
91
|
|
|
64
92
|
if (response.status === 429) {
|
|
65
|
-
// Rate limited - back off
|
|
66
|
-
const
|
|
67
|
-
const delay = retryAfter ? parseInt(retryAfter, 10) * 1000 : this.currentDelay * 2;
|
|
93
|
+
// Rate limited - back off. Retry-After may be seconds or an HTTP-date.
|
|
94
|
+
const delay = parseRetryAfter(response.headers.get('Retry-After')) ?? this.currentDelay * 2;
|
|
68
95
|
this.currentDelay = Math.min(this.maxDelay, delay);
|
|
69
96
|
if (!this.onError(429)) break;
|
|
70
97
|
continue;
|
|
@@ -79,8 +106,14 @@ export class RateLimiter {
|
|
|
79
106
|
this.onSuccess();
|
|
80
107
|
return response;
|
|
81
108
|
} catch (err) {
|
|
109
|
+
// A caller-initiated abort is intentional cancellation, not a failure
|
|
110
|
+
// to retry around.
|
|
111
|
+
if (callerSignal?.aborted) throw err;
|
|
82
112
|
lastError = err as Error;
|
|
83
113
|
if (!this.onError(0)) break;
|
|
114
|
+
} finally {
|
|
115
|
+
clearTimeout(timer);
|
|
116
|
+
if (callerSignal) callerSignal.removeEventListener('abort', onCallerAbort);
|
|
84
117
|
}
|
|
85
118
|
}
|
|
86
119
|
|
package/lib/trackchanges.ts
CHANGED
|
@@ -1,247 +1,166 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Track changes module - Apply markdown annotations as Word track changes
|
|
3
3
|
*
|
|
4
|
-
* Converts CriticMarkup
|
|
4
|
+
* Converts CriticMarkup insertions/deletions/substitutions to pandoc-native
|
|
5
|
+
* track-change spans (`[text]{.insertion}` / `[text]{.deletion}`). Pandoc's
|
|
6
|
+
* docx writer emits well-formed `w:ins`/`w:del` run-level revisions from these
|
|
7
|
+
* spans in a single pass, so the output is valid OOXML that Word accepts and
|
|
8
|
+
* that composes with comment injection (see lib/wordcomments.ts).
|
|
5
9
|
*/
|
|
6
10
|
|
|
7
11
|
import * as fs from 'fs';
|
|
8
12
|
import * as path from 'path';
|
|
9
13
|
import { execSync } from 'child_process';
|
|
10
14
|
import AdmZip from 'adm-zip';
|
|
11
|
-
import type { TrackChangeMarker } from './types.js';
|
|
12
|
-
import { escapeXml } from './utils.js';
|
|
13
15
|
|
|
14
|
-
interface
|
|
16
|
+
interface NativeTrackChangeOptions {
|
|
15
17
|
author?: string;
|
|
18
|
+
/** ISO-8601 timestamp for the revisions. Defaults to now (no milliseconds). */
|
|
19
|
+
date?: string;
|
|
16
20
|
}
|
|
17
21
|
|
|
18
|
-
interface
|
|
22
|
+
export interface NativeTrackChangeStats {
|
|
23
|
+
insertions: number;
|
|
24
|
+
deletions: number;
|
|
25
|
+
substitutions: number;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface ConvertResult {
|
|
19
29
|
text: string;
|
|
20
|
-
|
|
30
|
+
stats: NativeTrackChangeStats;
|
|
21
31
|
}
|
|
22
32
|
|
|
23
33
|
interface ApplyResult {
|
|
24
34
|
success: boolean;
|
|
25
35
|
message: string;
|
|
26
|
-
stats?:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
36
|
+
stats?: NativeTrackChangeStats;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/** Word/pandoc want revision dates without milliseconds: 2026-07-05T08:33:00Z */
|
|
40
|
+
function isoDateNoMillis(): string {
|
|
41
|
+
return new Date().toISOString().replace(/\.\d{3}Z$/, 'Z');
|
|
31
42
|
}
|
|
32
43
|
|
|
33
44
|
/**
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
* @param text - Text with CriticMarkup annotations
|
|
38
|
-
* @param options - Options
|
|
39
|
-
* @returns Processed text and marker info
|
|
45
|
+
* Escape a value for use inside a pandoc span attribute (`author="..."`).
|
|
46
|
+
* Pandoc attribute values are double-quoted; a literal `"` or `\` would break
|
|
47
|
+
* the attribute, so both are backslash-escaped.
|
|
40
48
|
*/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
let markerId = 0;
|
|
49
|
+
function escapeSpanAttr(value: string): string {
|
|
50
|
+
return value.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
51
|
+
}
|
|
45
52
|
|
|
53
|
+
/**
|
|
54
|
+
* Convert CriticMarkup insertions/deletions/substitutions to pandoc-native
|
|
55
|
+
* track-change spans. Comments (`{>>...<<}`) and highlights (`{==...==}`) are
|
|
56
|
+
* left untouched — the caller decides how to handle those (strip, or thread
|
|
57
|
+
* them via wordcomments.ts).
|
|
58
|
+
*
|
|
59
|
+
* A single pandoc pass over the result emits valid `w:ins`/`w:del` revisions,
|
|
60
|
+
* so this composes with the full rev filter chain (crossref, citeproc,
|
|
61
|
+
* reference-doc, macros) instead of post-processing document.xml by hand.
|
|
62
|
+
*
|
|
63
|
+
* @param text - Markdown with CriticMarkup annotations
|
|
64
|
+
* @param options - Author/date for the revisions
|
|
65
|
+
* @returns Converted markdown plus per-type counts
|
|
66
|
+
*/
|
|
67
|
+
export function criticToNativeTrackChanges(
|
|
68
|
+
text: string,
|
|
69
|
+
options: NativeTrackChangeOptions = {}
|
|
70
|
+
): ConvertResult {
|
|
71
|
+
const author = escapeSpanAttr(options.author ?? 'Author');
|
|
72
|
+
const date = escapeSpanAttr(options.date ?? isoDateNoMillis());
|
|
73
|
+
const insAttr = `{.insertion author="${author}" date="${date}"}`;
|
|
74
|
+
const delAttr = `{.deletion author="${author}" date="${date}"}`;
|
|
75
|
+
|
|
76
|
+
const stats: NativeTrackChangeStats = { insertions: 0, deletions: 0, substitutions: 0 };
|
|
46
77
|
let result = text;
|
|
47
78
|
|
|
48
|
-
//
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
content,
|
|
55
|
-
author,
|
|
56
|
-
});
|
|
57
|
-
return `{{TC_${id}}}`;
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
// Process deletions: {--text--}
|
|
61
|
-
result = result.replace(/\{--(.+?)--\}/gs, (match, content) => {
|
|
62
|
-
const id = markerId++;
|
|
63
|
-
markers.push({
|
|
64
|
-
id,
|
|
65
|
-
type: 'delete',
|
|
66
|
-
content,
|
|
67
|
-
author,
|
|
68
|
-
});
|
|
69
|
-
return `{{TC_${id}}}`;
|
|
79
|
+
// Substitutions first so `{~~old~>new~~}` is consumed before the insertion/
|
|
80
|
+
// deletion passes could see its inner delimiters. Emit delete-then-insert so
|
|
81
|
+
// Word shows the struck-through original followed by the replacement.
|
|
82
|
+
result = result.replace(/\{~~([\s\S]+?)~>([\s\S]+?)~~\}/g, (_m, oldText, newText) => {
|
|
83
|
+
stats.substitutions++;
|
|
84
|
+
return `[${oldText}]${delAttr}[${newText}]${insAttr}`;
|
|
70
85
|
});
|
|
71
86
|
|
|
72
|
-
//
|
|
73
|
-
result = result.replace(/\{
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
id,
|
|
77
|
-
type: 'substitute',
|
|
78
|
-
content: old,
|
|
79
|
-
replacement,
|
|
80
|
-
author,
|
|
81
|
-
});
|
|
82
|
-
return `{{TC_${id}}}`;
|
|
87
|
+
// Insertions: {++text++}
|
|
88
|
+
result = result.replace(/\{\+\+([\s\S]+?)\+\+\}/g, (_m, content) => {
|
|
89
|
+
stats.insertions++;
|
|
90
|
+
return `[${content}]${insAttr}`;
|
|
83
91
|
});
|
|
84
92
|
|
|
85
|
-
//
|
|
86
|
-
result = result.replace(/\{
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
const colonIdx = content.indexOf(':');
|
|
90
|
-
let commentAuthor = author;
|
|
91
|
-
let commentText = content;
|
|
92
|
-
if (colonIdx > 0 && colonIdx < 30) {
|
|
93
|
-
commentAuthor = content.slice(0, colonIdx).trim();
|
|
94
|
-
commentText = content.slice(colonIdx + 1).trim();
|
|
95
|
-
}
|
|
96
|
-
markers.push({
|
|
97
|
-
id,
|
|
98
|
-
type: 'comment',
|
|
99
|
-
content: commentText,
|
|
100
|
-
author: commentAuthor,
|
|
101
|
-
});
|
|
102
|
-
return `{{TC_${id}}}`;
|
|
93
|
+
// Deletions: {--text--}
|
|
94
|
+
result = result.replace(/\{--([\s\S]+?)--\}/g, (_m, content) => {
|
|
95
|
+
stats.deletions++;
|
|
96
|
+
return `[${content}]${delAttr}`;
|
|
103
97
|
});
|
|
104
98
|
|
|
105
|
-
return { text: result,
|
|
99
|
+
return { text: result, stats };
|
|
106
100
|
}
|
|
107
101
|
|
|
108
102
|
/**
|
|
109
|
-
*
|
|
103
|
+
* Enable tracked-revision display in a docx's settings.xml (in place).
|
|
110
104
|
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
* @returns Result with success status and message
|
|
105
|
+
* The `w:ins`/`w:del` elements already render as tracked changes without this,
|
|
106
|
+
* but `w:trackRevisions` tells Word to keep tracking the author's further
|
|
107
|
+
* edits — the expected state for a "return to author" review document.
|
|
115
108
|
*/
|
|
116
|
-
export
|
|
117
|
-
docxPath
|
|
118
|
-
markers: TrackChangeMarker[],
|
|
119
|
-
outputPath: string
|
|
120
|
-
): Promise<ApplyResult> {
|
|
121
|
-
if (!fs.existsSync(docxPath)) {
|
|
122
|
-
return { success: false, message: `File not found: ${docxPath}` };
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
let zip: AdmZip;
|
|
126
|
-
try {
|
|
127
|
-
zip = new AdmZip(docxPath);
|
|
128
|
-
} catch (err) {
|
|
129
|
-
const error = err as Error;
|
|
130
|
-
return { success: false, message: `Invalid DOCX file: ${error.message}` };
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// Read document.xml
|
|
134
|
-
const docEntry = zip.getEntry('word/document.xml');
|
|
135
|
-
if (!docEntry) {
|
|
136
|
-
return { success: false, message: 'Invalid DOCX: no document.xml' };
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
let documentXml = zip.readAsText(docEntry);
|
|
140
|
-
|
|
141
|
-
// Generate ISO date for track changes
|
|
142
|
-
const now = new Date().toISOString();
|
|
143
|
-
|
|
144
|
-
// Replace markers with track change XML
|
|
145
|
-
for (const marker of markers) {
|
|
146
|
-
const placeholder = `{{TC_${marker.id}}}`;
|
|
147
|
-
let replacement = '';
|
|
148
|
-
|
|
149
|
-
const escapedContent = escapeXml(marker.content);
|
|
150
|
-
const escapedAuthor = escapeXml(marker.author);
|
|
151
|
-
|
|
152
|
-
if (marker.type === 'insert') {
|
|
153
|
-
replacement = `<w:ins w:id="${marker.id}" w:author="${escapedAuthor}" w:date="${now}"><w:r><w:t>${escapedContent}</w:t></w:r></w:ins>`;
|
|
154
|
-
} else if (marker.type === 'delete') {
|
|
155
|
-
replacement = `<w:del w:id="${marker.id}" w:author="${escapedAuthor}" w:date="${now}"><w:r><w:delText>${escapedContent}</w:delText></w:r></w:del>`;
|
|
156
|
-
} else if (marker.type === 'substitute') {
|
|
157
|
-
const escapedReplacement = escapeXml(marker.replacement || '');
|
|
158
|
-
replacement = `<w:del w:id="${marker.id}" w:author="${escapedAuthor}" w:date="${now}"><w:r><w:delText>${escapedContent}</w:delText></w:r></w:del><w:ins w:id="${marker.id + 1000}" w:author="${escapedAuthor}" w:date="${now}"><w:r><w:t>${escapedReplacement}</w:t></w:r></w:ins>`;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
documentXml = documentXml.replace(placeholder, replacement);
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// Update document.xml
|
|
165
|
-
zip.updateFile('word/document.xml', Buffer.from(documentXml));
|
|
166
|
-
|
|
167
|
-
// Enable track revisions in settings.xml
|
|
109
|
+
export function enableTrackRevisions(docxPath: string): void {
|
|
110
|
+
const zip = new AdmZip(docxPath);
|
|
168
111
|
const settingsEntry = zip.getEntry('word/settings.xml');
|
|
169
|
-
if (settingsEntry)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
112
|
+
if (!settingsEntry) return;
|
|
113
|
+
let settingsXml = zip.readAsText(settingsEntry);
|
|
114
|
+
if (settingsXml.includes('w:trackRevisions')) return;
|
|
115
|
+
// trackRevisions must appear early in the ordered settings sequence; placing
|
|
116
|
+
// it right after the opening tag keeps Word from rejecting the schema order.
|
|
117
|
+
settingsXml = settingsXml.replace(/(<w:settings[^>]*>)/, '$1<w:trackRevisions/>');
|
|
118
|
+
if (!settingsXml.includes('<w:trackRevisions/>')) {
|
|
119
|
+
// No opening tag matched (unexpected) — fall back to before the close tag.
|
|
120
|
+
settingsXml = settingsXml.replace('</w:settings>', '<w:trackRevisions/></w:settings>');
|
|
178
121
|
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
zip.writeZip(outputPath);
|
|
182
|
-
|
|
183
|
-
return { success: true, message: `Created ${outputPath} with track changes` };
|
|
122
|
+
zip.updateFile('word/settings.xml', Buffer.from(settingsXml, 'utf-8'));
|
|
123
|
+
zip.writeZip(docxPath);
|
|
184
124
|
}
|
|
185
125
|
|
|
186
126
|
/**
|
|
187
|
-
* Build a Word document with track changes from annotated markdown
|
|
127
|
+
* Build a standalone Word document with track changes from annotated markdown.
|
|
128
|
+
*
|
|
129
|
+
* Used by `rev apply <md> <docx>` for a single markdown file outside a rev
|
|
130
|
+
* project (no crossref/citeproc/reference-doc). Comments are dropped — use the
|
|
131
|
+
* project build (`rev build docx --show-changes`) for the full filter chain and
|
|
132
|
+
* threaded comments.
|
|
188
133
|
*
|
|
189
134
|
* @param mdPath - Path to markdown file with CriticMarkup
|
|
190
135
|
* @param docxPath - Output path for Word document
|
|
191
|
-
* @param options -
|
|
136
|
+
* @param options - Author name for the revisions
|
|
192
137
|
* @returns Result with success status and message
|
|
193
138
|
*/
|
|
194
139
|
export async function buildWithTrackChanges(
|
|
195
140
|
mdPath: string,
|
|
196
141
|
docxPath: string,
|
|
197
|
-
options:
|
|
142
|
+
options: NativeTrackChangeOptions = {}
|
|
198
143
|
): Promise<ApplyResult> {
|
|
199
|
-
const { author = 'Author' } = options;
|
|
200
|
-
|
|
201
144
|
if (!fs.existsSync(mdPath)) {
|
|
202
145
|
return { success: false, message: `File not found: ${mdPath}` };
|
|
203
146
|
}
|
|
204
147
|
|
|
148
|
+
const { author = 'Author' } = options;
|
|
205
149
|
const content = fs.readFileSync(mdPath, 'utf-8');
|
|
150
|
+
const { text: converted, stats } = criticToNativeTrackChanges(content, { author });
|
|
206
151
|
|
|
207
|
-
|
|
208
|
-
const
|
|
209
|
-
|
|
210
|
-
// If no annotations, just build normally
|
|
211
|
-
if (markers.length === 0) {
|
|
212
|
-
try {
|
|
213
|
-
execSync(`pandoc "${mdPath}" -o "${docxPath}"`, { encoding: 'utf-8' });
|
|
214
|
-
return { success: true, message: `Created ${docxPath}` };
|
|
215
|
-
} catch (err) {
|
|
216
|
-
const error = err as Error;
|
|
217
|
-
return { success: false, message: error.message };
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// Write prepared content to temp file
|
|
222
|
-
const tempDir = path.dirname(mdPath);
|
|
223
|
-
const tempMd = path.join(tempDir, `.temp-${Date.now()}.md`);
|
|
224
|
-
const tempDocx = path.join(tempDir, `.temp-${Date.now()}.docx`);
|
|
152
|
+
const total = stats.insertions + stats.deletions + stats.substitutions;
|
|
153
|
+
const tempMd = path.join(path.dirname(mdPath), `.temp-tc-${process.pid}.md`);
|
|
225
154
|
|
|
226
155
|
try {
|
|
227
|
-
fs.writeFileSync(tempMd,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
// Apply track changes
|
|
233
|
-
const result = await applyTrackChangesToDocx(tempDocx, markers, docxPath);
|
|
234
|
-
|
|
235
|
-
// Clean up temp files
|
|
236
|
-
fs.unlinkSync(tempMd);
|
|
237
|
-
fs.unlinkSync(tempDocx);
|
|
238
|
-
|
|
239
|
-
return result;
|
|
156
|
+
fs.writeFileSync(tempMd, converted, 'utf-8');
|
|
157
|
+
execSync(`pandoc "${tempMd}" -o "${docxPath}"`, { encoding: 'utf-8' });
|
|
158
|
+
if (total > 0) enableTrackRevisions(docxPath);
|
|
159
|
+
return { success: true, message: `Created ${docxPath} with track changes`, stats };
|
|
240
160
|
} catch (err) {
|
|
241
|
-
// Clean up on error
|
|
242
|
-
if (fs.existsSync(tempMd)) fs.unlinkSync(tempMd);
|
|
243
|
-
if (fs.existsSync(tempDocx)) fs.unlinkSync(tempDocx);
|
|
244
161
|
const error = err as Error;
|
|
245
162
|
return { success: false, message: error.message };
|
|
163
|
+
} finally {
|
|
164
|
+
try { fs.unlinkSync(tempMd); } catch { /* best-effort cleanup */ }
|
|
246
165
|
}
|
|
247
166
|
}
|
package/lib/types.ts
CHANGED
|
@@ -218,7 +218,13 @@ export interface BibEntry {
|
|
|
218
218
|
|
|
219
219
|
export interface DoiCheckResult {
|
|
220
220
|
valid: boolean;
|
|
221
|
-
source?: 'crossref' | 'datacite';
|
|
221
|
+
source?: 'crossref' | 'datacite' | 'doi.org';
|
|
222
|
+
/**
|
|
223
|
+
* True when the registry could not be reached (network error, timeout, or
|
|
224
|
+
* 5xx) — the DOI's validity is unknown, distinct from a definitive "not
|
|
225
|
+
* found". Callers must not report an unreachable DOI as invalid.
|
|
226
|
+
*/
|
|
227
|
+
unreachable?: boolean;
|
|
222
228
|
metadata?: {
|
|
223
229
|
title: string;
|
|
224
230
|
authors: string[];
|
|
@@ -258,6 +264,8 @@ export interface BibCheckResult {
|
|
|
258
264
|
entries: Array<BibEntry & { status: string; message?: string; metadata?: object }>;
|
|
259
265
|
valid: number;
|
|
260
266
|
invalid: number;
|
|
267
|
+
/** DOIs whose registry could not be reached (network/timeout) — not invalid. */
|
|
268
|
+
unreachable: number;
|
|
261
269
|
missing: number;
|
|
262
270
|
skipped: number;
|
|
263
271
|
}
|
|
@@ -481,18 +489,6 @@ export interface TrackChangesResult {
|
|
|
481
489
|
stats: { insertions: number; deletions: number };
|
|
482
490
|
}
|
|
483
491
|
|
|
484
|
-
// ============================================
|
|
485
|
-
// TrackChanges
|
|
486
|
-
// ============================================
|
|
487
|
-
|
|
488
|
-
export interface TrackChangeMarker {
|
|
489
|
-
id: number;
|
|
490
|
-
type: 'insert' | 'delete' | 'substitute' | 'comment';
|
|
491
|
-
content: string;
|
|
492
|
-
author: string;
|
|
493
|
-
replacement?: string;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
492
|
// ============================================
|
|
497
493
|
// Spelling
|
|
498
494
|
// ============================================
|