Don't sanitize lt and gt from SD prompts

31dbb5144eb8c6843a118db07c29f813ea4aaa82

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/extensions/stable-diffusion/index.js+1 -1
@@ -2187,7 +2187,7 @@ function processReply(str) {
2187 str = str.replaceAll('“', '');2187 str = str.replaceAll('“', '');
2188 str = str.replaceAll('.', ',');2188 str = str.replaceAll('.', ',');
2189 str = str.replaceAll('\n', ', ');2189 str = str.replaceAll('\n', ', ');
2190 str = str.replace(/[^a-zA-Z0-9,:_(){}[\]\-']+/g, ' ');2190 str = str.replace(/[^a-zA-Z0-9,:_(){}<>[\]\-']+/g, ' ');
2191 str = str.replace(/\s+/g, ' '); // Collapse multiple whitespaces into one2191 str = str.replace(/\s+/g, ' '); // Collapse multiple whitespaces into one
2192 str = str.trim();2192 str = str.trim();
21932193