Update index.html

This commit is contained in:
Saifeddine ALOUI 2025-01-24 16:43:43 +01:00 committed by GitHub
parent 8a154038cb
commit fb7f853125
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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');
}