turn off HTML for renderer

This commit is contained in:
timothycarambat 2024-05-02 09:55:06 -07:00
parent 47b7df4fc3
commit c2277906ad
2 changed files with 2 additions and 2 deletions
embed/src/utils/chat
frontend/src/utils/chat

View file

@ -4,7 +4,7 @@ import { staticHljs as hljs } from "./hljs";
import { v4 } from "uuid";
const markdown = markdownIt({
html: true,
html: false,
typographer: true,
highlight: function (code, lang) {
const uuid = v4();

View file

@ -5,7 +5,7 @@ import "highlight.js/styles/github-dark-dimmed.min.css";
import { v4 } from "uuid";
const markdown = markdownIt({
html: true,
html: false,
typographer: true,
highlight: function (code, lang) {
const uuid = v4();