yasserrmd commited on
Commit
3dacd93
·
verified ·
1 Parent(s): dc5ce47

Update static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +2 -5
static/index.html CHANGED
@@ -254,11 +254,8 @@
254
  const data = JSON.parse(event.data);
255
 
256
  if (data.chunk) {
257
- // Convert Markdown chunk to HTML using Marked.js
258
- const htmlChunk = marked.parse(data.chunk);
259
-
260
- // Append streaming chunks as HTML
261
- resultContent.innerHTML += htmlChunk;
262
 
263
 
264
 
 
254
  const data = JSON.parse(event.data);
255
 
256
  if (data.chunk) {
257
+
258
+ resultContent.innerHTML += data.chunk;
 
 
 
259
 
260
 
261