Spaces:
Sleeping
Sleeping
File size: 12,878 Bytes
90647f1 df86a7e 90647f1 df86a7e 90647f1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | /**
* 内容解析器
* XML 标签转 AST,支持 qa_box, script_box, warn_box, tip_box, table
*/
import { Paragraph, Table } from 'docx';
import {
qaBox,
scriptBox,
warnBox,
tipBox,
professionalTable,
h1,
h2,
h3,
p,
bullet,
blank,
divider,
pageBreak,
generateCover
} from './docx-builder';
export type ContentNodeType =
| 'paragraph'
| 'heading'
| 'qa_box'
| 'script_box'
| 'warn_box'
| 'tip_box'
| 'table'
| 'bullet'
| 'divider'
| 'page_break'
| 'cover';
export interface ContentNode {
type: ContentNodeType;
content: string | Record<string, any>;
level?: number;
children?: ContentNode[];
}
/**
* 将 LLM 输出的未处理自定义标签转换为 Markdown 等效格式
* 这些标签在 prompt 中定义,但 content-parser 不直接支持
*/
function normalizeCustomTags(markdown: string): string {
// 高管摘要 → 加粗段落
markdown = markdown.replace(/<exec_summary>\n?([\s\S]+?)\n?<\/exec_summary>/g,
(_, content) => `**【高管摘要】**\n${content.trim()}\n`);
// 核心数据网格 → 加粗段落
markdown = markdown.replace(/<metric_grid>([\s\S]+?)<\/metric_grid>/g,
(_, content) => `**【核心数据】** ${content.trim()}\n`);
// 愿景引言 → 加粗段落
markdown = markdown.replace(/<vision_quote>\n?([\s\S]+?)\n?<\/vision_quote>/g,
(_, content) => `> ${content.trim()}\n`);
// 高亮框 → 标题 + 段落
markdown = markdown.replace(/<highlight_box\s*(?:title="([^"]*)")?\s*>\n?([\s\S]+?)\n?<\/highlight_box>/g,
(_, title, content) => `### ${title || '核心洞察'}\n${content.trim()}\n`);
// 步骤框 → 编号列表
markdown = markdown.replace(/<step_box>\n?([\s\S]+?)\n?<\/step_box>/g,
(_, content) => {
const lines = content.trim().split('\n').filter((l: string) => l.trim());
return lines.map((l: string, i: number) => {
const text = l.replace(/^\d+\.\s*/, '').trim();
return `${i + 1}. ${text}`;
}).join('\n') + '\n';
});
// 对比框 → 表格格式
markdown = markdown.replace(/<comparison_box\s+left_title="([^"]*)"\s+right_title="([^"]*)">\n?([\s\S]+?)\n?<\/comparison_box>/g,
(_, leftTitle, rightTitle, content) => {
const lines = content.trim().split('\n').filter((l: string) => l.trim());
const header = `| ${leftTitle} | ${rightTitle} |\n| --- | --- |`;
const rows = lines.map((l: string) => {
const parts = l.split('|').map((p: string) => p.trim());
return `| ${parts[0] || ''} | ${parts[1] || ''} |`;
}).join('\n');
return `${header}\n${rows}\n`;
});
// 检查清单 → 编号列表
markdown = markdown.replace(/<checklist\s*(?:title="([^"]*)")?\s*>\n?([\s\S]+?)\n?<\/checklist>/g,
(_, title, content) => {
const lines = content.trim().split('\n').filter((l: string) => l.trim());
const header = title ? `### ${title}\n` : '';
return header + lines.map((l: string) => `- ${l.replace(/^\[[ x]\]\s*/, '').trim()}`).join('\n') + '\n';
});
// 引用 → 加粗段落
markdown = markdown.replace(/<citation>([\s\S]+?)<\/citation>/g,
(_, content) => `> ${content.trim()}\n`);
// 数字卡片 → 加粗段落
markdown = markdown.replace(/<number_card\s+label="([^"]*)"\s+value="([^"]*)"(?:\s+note="([^"]*)")?\s*\/?>/g,
(_, label, value, note) => `**${label}:${value}**${note ? `(${note})` : ''}\n`);
// 信息框 → 段落
markdown = markdown.replace(/<info_box\s*(?:title="([^"]*)")?\s*>\n?([\s\S]+?)\n?<\/info_box>/g,
(_, title, content) => `${title ? `**${title}**\n` : ''}${content.trim()}\n`);
// KPI 行 → 加粗段落
markdown = markdown.replace(/<kpi_row>\n?([\s\S]+?)\n?<\/kpi_row>/g,
(_, content) => `**【关键指标】**\n${content.trim()}\n`);
// 进度条 → 段落
markdown = markdown.replace(/<phase_bar\s*(?:label="([^"]*)")?\s*>\n?([\s\S]+?)\n?<\/phase_bar>/g,
(_, label, content) => `${label ? `**${label}**\n` : ''}${content.trim()}\n`);
return markdown;
}
/**
* 解析 Markdown + XML 标签内容
*/
export function parseContent(markdown: string): ContentNode[] {
// ★ 预处理:将未支持的自定义标签转换为 Markdown 等效格式
markdown = normalizeCustomTags(markdown);
const nodes: ContentNode[] = [];
let remaining = markdown;
// 定义标签匹配模式
const patterns: Record<string, RegExp> = {
qa_box: /<qa_box\s+question="([^"]+)"[^>]*>\n([\s\S]+?)\n<\/qa_box>/g,
script_box: /<script_box\s+scene="([^"]+)"[^>]*>\n([\s\S]+?)\n<\/script_box>/g,
warn_box: /<warn_box[^>]*>\n([\s\S]+?)\n<\/warn_box>/g,
tip_box: /<tip_box\s+title="([^"]+)"[^>]*>\n([\s\S]+?)\n<\/tip_box>/g,
table: /<table\s+headers="([^"]+)"[^>]*>\n([\s\S]+?)\n<\/table>/g
};
// 提取所有标签位置
const tagPositions: Array<{ start: number; end: number; node: ContentNode }> = [];
// 解析 qa_box
let match;
while ((match = patterns.qa_box.exec(markdown)) !== null) {
tagPositions.push({
start: match.index,
end: match.index + match[0].length,
node: {
type: 'qa_box',
content: {
question: match[1],
answers: match[2].split('\n').filter(l => l.trim())
}
}
});
}
// 解析 script_box
patterns.script_box.lastIndex = 0;
while ((match = patterns.script_box.exec(markdown)) !== null) {
tagPositions.push({
start: match.index,
end: match.index + match[0].length,
node: {
type: 'script_box',
content: {
scene: match[1],
lines: match[2].split('\n').filter(l => l.trim())
}
}
});
}
// 解析 warn_box
patterns.warn_box.lastIndex = 0;
while ((match = patterns.warn_box.exec(markdown)) !== null) {
tagPositions.push({
start: match.index,
end: match.index + match[0].length,
node: {
type: 'warn_box',
content: {
lines: match[1].split('\n').filter(l => l.trim())
}
}
});
}
// 解析 tip_box
patterns.tip_box.lastIndex = 0;
while ((match = patterns.tip_box.exec(markdown)) !== null) {
tagPositions.push({
start: match.index,
end: match.index + match[0].length,
node: {
type: 'tip_box',
content: {
title: match[1],
lines: match[2].split('\n').filter(l => l.trim())
}
}
});
}
// 解析 table
patterns.table.lastIndex = 0;
while ((match = patterns.table.exec(markdown)) !== null) {
const headers = match[1].split(',').map(h => h.trim());
const rows = match[2]
.split('\n')
.filter(l => l.trim())
.map(row => row.split('|').map(cell => cell.trim()));
tagPositions.push({
start: match.index,
end: match.index + match[0].length,
node: {
type: 'table',
content: { headers, rows, colWidths: calculateColWidths(headers, rows) }
}
});
}
// 按位置排序
tagPositions.sort((a, b) => a.start - b.start);
// 解析普通 Markdown 文本(非标签部分)
let lastEnd = 0;
for (const pos of tagPositions) {
// 处理标签之前的文本
if (pos.start > lastEnd) {
const textBetween = markdown.slice(lastEnd, pos.start);
const textNodes = parseMarkdownText(textBetween);
nodes.push(...textNodes);
}
// 添加标签节点
nodes.push(pos.node);
lastEnd = pos.end;
}
// 处理剩余文本
if (lastEnd < markdown.length) {
const remainingText = markdown.slice(lastEnd);
const textNodes = parseMarkdownText(remainingText);
nodes.push(...textNodes);
}
return nodes;
}
/**
* 解析普通 Markdown 文本
*/
function parseMarkdownText(text: string): ContentNode[] {
const nodes: ContentNode[] = [];
const lines = text.split('\n');
for (const line of lines) {
const trimmed = line.trim();
if (!trimmed) {
// 空行
nodes.push({ type: 'paragraph', content: '' });
continue;
}
// 标题
if (trimmed.startsWith('# ')) {
nodes.push({ type: 'heading', content: trimmed.slice(2), level: 1 });
} else if (trimmed.startsWith('## ')) {
nodes.push({ type: 'heading', content: trimmed.slice(3), level: 2 });
} else if (trimmed.startsWith('### ')) {
nodes.push({ type: 'heading', content: trimmed.slice(4), level: 3 });
}
// 列表
else if (trimmed.startsWith('- ') || trimmed.startsWith('* ')) {
nodes.push({ type: 'bullet', content: trimmed.slice(2), level: 0 });
} else if (trimmed.match(/^\d+\./)) {
nodes.push({ type: 'bullet', content: trimmed.replace(/^\d+\.\s*/, ''), level: 0 });
}
// 分隔线
else if (trimmed === '---' || trimmed === '***') {
nodes.push({ type: 'divider', content: '' });
}
// 分页
else if (trimmed === '<<<PAGE_BREAK>>>') {
nodes.push({ type: 'page_break', content: '' });
}
// 普通段落
else {
nodes.push({ type: 'paragraph', content: trimmed });
}
}
return nodes;
}
/**
* 计算表格列宽
*/
function calculateColWidths(headers: string[], rows: string[][]): number[] {
const colCount = headers.length;
const defaultWidth = 9000 / colCount;
// 根据内容长度调整宽度
const maxWidths = headers.map((h, i) => {
const headerLen = h.length;
const maxRowLen = Math.max(...rows.map(r => (r[i] || '').length));
return Math.max(headerLen, maxRowLen);
});
// 按比例分配宽度
const totalMax = maxWidths.reduce((a, b) => a + b, 0);
return maxWidths.map(w => Math.round((w / totalMax) * 9000));
}
/**
* 将 AST 转换为 Docx 元素
*/
export function buildDocxElements(
nodes: ContentNode[],
options?: { title?: string; version?: string; confidentiality?: string }
): (Paragraph | Table)[] {
const elements: (Paragraph | Table)[] = [];
// 添加封面
if (options?.title) {
elements.push(...generateCover(
options.title,
options.version || 'v1.0',
options.confidentiality || '内部机密,禁止外传'
));
}
for (const node of nodes) {
switch (node.type) {
case 'heading':
if (node.level === 1) {
elements.push(h1(node.content as string));
} else if (node.level === 2) {
elements.push(h2(node.content as string));
} else {
elements.push(h3(node.content as string));
}
break;
case 'paragraph':
if ((node.content as string).trim()) {
elements.push(p(node.content as string));
} else {
elements.push(blank());
}
break;
case 'bullet':
elements.push(bullet(node.content as string, node.level || 0));
break;
case 'qa_box':
const qaData = node.content as { question: string; answers: string[] };
elements.push(qaBox(qaData.question, qaData.answers));
break;
case 'script_box':
const scriptData = node.content as { scene: string; lines: string[] };
elements.push(scriptBox(scriptData.scene, scriptData.lines));
break;
case 'warn_box':
const warnData = node.content as { lines: string[] };
elements.push(warnBox(warnData.lines));
break;
case 'tip_box':
const tipData = node.content as { title: string; lines: string[] };
elements.push(tipBox(tipData.title, tipData.lines));
break;
case 'table':
const tableData = node.content as {
headers: string[];
rows: string[][];
colWidths: number[];
};
elements.push(professionalTable(tableData.headers, tableData.rows, tableData.colWidths));
break;
case 'divider':
elements.push(divider());
break;
case 'page_break':
elements.push(pageBreak());
break;
}
}
return elements;
}
/**
* 完整解析流程:Markdown → AST → Docx Elements → Buffer
*/
export async function markdownToDocx(
markdown: string,
options?: {
title?: string;
version?: string;
confidentiality?: string;
}
): Promise<Buffer> {
const nodes = parseContent(markdown);
const elements = buildDocxElements(nodes, options);
// 导入生成函数
const { generateDocxBuffer } = await import('./docx-builder');
return generateDocxBuffer(elements);
}
/**
* 快速统计内容组件数量
*/
export function countContentComponents(markdown: string): Record<string, number> {
return {
qaBox: (markdown.match(/<qa_box/g) || []).length,
scriptBox: (markdown.match(/<script_box/g) || []).length,
warnBox: (markdown.match(/<warn_box/g) || []).length,
tipBox: (markdown.match(/<tip_box/g) || []).length,
table: (markdown.match(/<table/g) || []).length,
heading: (markdown.match(/^#{1,3}\s/gm) || []).length,
bullet: (markdown.match(/^[-*]\s/gm) || []).length
};
} |