We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c77baa commit 055382bCopy full SHA for 055382b
2 files changed
tests/md2html/fixtures/.gitattributes
tests/md2html/md2html.test.js
@@ -12,7 +12,7 @@ describe("v3.0 - Validate examples", async () => {
12
const expected = readFileSync(
13
folder + entry.name.replace(".md", ".html"),
14
"utf8",
15
- );
+ ).split(/\r\n|\n/).join("\n");
16
const output = await md2html([entry.name], folder);
17
expect(output.stdout).to.equal(expected);
18
});
0 commit comments