Skip to content
Snippets Groups Projects
Commit e26f5989 authored by Christos's avatar Christos
Browse files

Merge branch '852-list-formatting-ai-response' into 'master'

List formatting is not retained when AI response is used, check other formatting as well

See merge request !532
parents 5ee3ab11 8c9b9b02
No related branches found
No related tags found
1 merge request!532List formatting is not retained when AI response is used, check other formatting as well
Pipeline #56907 passed with stages
in 42 minutes and 47 seconds
......@@ -27,13 +27,31 @@ const replaceSelectedText = (view, responseText, replace = false) => {
);
}
if (responseText.includes('\n\n')) {
responseText.split('\n\n').forEach(element => {
paragraphNodes.push(
parser.parse(elementFromString(element.replace(/\n/g, '<br />')), {
preserveWhitespace: true,
}),
);
if (responseText.includes('\n')) {
responseText.split('\n\n').forEach(paragraph => {
let content = '';
if (/^\d+\..*\n/.test(paragraph)) {
content = `<ol>`;
paragraph.split('\n').forEach(line => {
content += `<li>${line.replace(/^(\d+\.\s)/g, '').trim()}</li>`;
});
content += `</ol>`;
} else if (/^-.*\n/.test(paragraph)) {
content = `<ul>`;
paragraph.split('\n').forEach(line => {
content += `<li>${line.replace(/[-\s]/g, '')}</li>`;
});
content += `</ul>`;
} else {
content = paragraph.replace(/\n/g, '<br />');
}
paragraphNodes.push(parser.parse(elementFromString(content)));
});
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment