Skip to content

Commit eea5d5b

Browse files
corvansteijnmapfel
authored andcommitted
Don't append a CR and LF to the output, since this is rendered visibly. (dennisdoomen#134)
1 parent 3fd7782 commit eea5d5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Build/default.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ task Compile {
6464
$content = ($content -replace "---(.|\n)+---\n*", "")
6565

6666
if ($title) {
67-
$content = "<h1>$title</h1>\r\n" + $content;
67+
$content = "<h1>$title</h1>" + $content;
6868
}
6969

7070
Add-Content -Path $outfile $content

0 commit comments

Comments
 (0)