diff --git a/demo/web/static/index.html b/demo/web/static/index.html index c1de0ad..c7bb330 100644 --- a/demo/web/static/index.html +++ b/demo/web/static/index.html @@ -1281,10 +1281,10 @@ function renderMarkdown(md) { listStack.push('ul'); } let liContent = inlineMd(trimmed.slice(2)); - // 销售话术突出显示 + // 销售话术突出显示:微信绿色聊天气泡 if (/^\*\*销售话术\*\*/.test(trimmed.slice(2).trim())) { liContent = liContent.replace(/^销售话术<\/strong>[::]?/, ''); - html += `
  • 销售话术
    ${liContent}
  • `; + html += `
  • 销售话术${liContent}
  • `; } else { html += `
  • ${liContent}
  • `; }