We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86de256 commit 3b2f0a7Copy full SHA for 3b2f0a7
script.js
@@ -89,7 +89,7 @@ function streamMessage(cssClass, text) {
89
const interval = setInterval(() => {
90
if (i < lines.length) {
91
const li = document.createElement("li");
92
- li.innerHTML = lines[i].replace(/^(\d+\.\s+|[-*•]\s+)/, "").trim();
+ li.textContent = lines[i].replace(/^(\d+\.\s+|[-*•]\s+)/, "").trim();
93
listElement.appendChild(li);
94
chat.scrollTop = chat.scrollHeight;
95
i++;
0 commit comments