From 68b13034b155d0a3a60a761af4d119164e691ec7 Mon Sep 17 00:00:00 2001 From: hmo Date: Tue, 11 Aug 2026 10:57:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E6=A1=A3Tab=E7=94=A8=E7=9C=9F?= =?UTF-8?q?=E6=AD=A3=E7=9A=84markdown=E6=B8=B2=E6=9F=93mdRender(=E7=A7=BB?= =?UTF-8?q?=E6=A4=8D=E8=87=AAAgentsMeeting)=E2=80=94=E2=80=94=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E6=A0=87=E9=A2=98/=E5=88=97=E8=A1=A8/=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC/=E4=BB=A3=E7=A0=81=E5=9D=97/=E5=BC=95=E7=94=A8,?= =?UTF-8?q?=E6=9B=BF=E4=BB=A3=E7=AE=80=E5=8D=95inMd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index 377c05e2..a12d4be0 100644 --- a/static/index.html +++ b/static/index.html @@ -2010,7 +2010,7 @@ async function _docsRead(path) { } else { content.innerHTML = '
📄 ' + path + '
' + - '
' + inMd(data.content) + '
'; + '
' + mdRender(data.content) + '
'; } } @@ -2023,7 +2023,7 @@ function _renderVersionsHTML(md) { const body = lines.slice(1).join('\n').trim(); return '
' + '
' + title + '
' + - '
' + inMd(body) + '
' + + '
' + mdRender(body) + '
' + '
'; }).join(''); return '
📜 版本变更记录(给运营者的详细说明)
' + cards;