removed commented out code

This commit is contained in:
Hans Blankenhaus 2023-09-19 18:00:48 +02:00
parent a5cb58ca96
commit b561d5ad9a
1 changed files with 0 additions and 2 deletions

View File

@ -14,11 +14,9 @@ function preprocessMarkdown(markdown: string): string {
const withoutMultipleNewlines = markdown.replace(/\n{2,}/g, '\n');
// Remove extra spaces at the beginning of each line
const withoutExtraSpaces = dedent(withoutMultipleNewlines);
/*
if (markdownAutoWrap === false) {
return withoutExtraSpaces.replace(/ /g, ' ');
}
*/
return withoutExtraSpaces;
}