Revert change to generation of blank lines

This commit is contained in:
Robert
2023-05-05 17:18:47 +01:00
parent ecfa701159
commit 78c4cc17e9

View File

@@ -285,7 +285,7 @@ function generateMarkdownForPathResults(
);
const indentation = " ".repeat(listNumber.toString().length + 2);
pathLines.push(
...codeSnippet.map((line) => indentation + line.trimEnd()),
...codeSnippet.map((line) => (indentation + line).trimEnd()),
);
}
}