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;