diff --git a/index.html b/index.html
index aa79e79..e7638cb 100644
--- a/index.html
+++ b/index.html
@@ -103,14 +103,14 @@
html: true
});
- // 异步加载 readme.md 文件内容
+ // 异步加载 index.md 文件内容
fetch('https://raw.githubusercontent.com/woodchen-ink/Random-Api/master/index.md')
.then(response => response.text())
.then(markdownText => {
// 渲染 Markdown 内容
document.getElementById('markdown-content').innerHTML = md.render(markdownText);
})
- .catch(error => console.error('Error loading readme.md:', error));
+ .catch(error => console.error('Error loading index.md:', error));