diff --git a/demo/web/static/index.html b/demo/web/static/index.html
index 38b6e88..c1de0ad 100644
--- a/demo/web/static/index.html
+++ b/demo/web/static/index.html
@@ -1280,7 +1280,14 @@ function renderMarkdown(md) {
html += '
';
listStack.push('ul');
}
- html += `- ${inlineMd(trimmed.slice(2))}
`;
+ let liContent = inlineMd(trimmed.slice(2));
+ // 销售话术突出显示
+ if (/^\*\*销售话术\*\*/.test(trimmed.slice(2).trim())) {
+ liContent = liContent.replace(/^销售话术<\/strong>[::]?/, '');
+ html += `- 销售话术
${liContent}
`;
+ } else {
+ html += `- ${liContent}
`;
+ }
i++; continue;
}
// 普通段落(收集连续非空非格式行)