We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb4c48 commit 4aa0b1fCopy full SHA for 4aa0b1f
1 file changed
assets/js/script.js
@@ -43,7 +43,7 @@ fetch("assets/quotes.txt")
43
// 将所有田语添加到田语列表
44
quotes.forEach(quote => {
45
const listItem = document.createElement("li");
46
- listItem.textContent = quote;
+ listItem.innerHTML = quote;
47
quoteListElement.appendChild(listItem);
48
});
49
})
0 commit comments