diff --git a/lightrag/api/static/index.html b/lightrag/api/static/index.html index 8f21a537..e89f7d91 100644 --- a/lightrag/api/static/index.html +++ b/lightrag/api/static/index.html @@ -582,7 +582,7 @@ if (response.ok) { const data = await response.json(); - queryResponse.innerHTML = marked(data.response); + queryResponse.innerHTML = marked.parse(data.response); } else { throw new Error('Failed to process query'); }