More Windows compatibility.

This commit is contained in:
ccd0 2016-04-09 17:20:23 -07:00
parent 00487fb49a
commit 2d6702cbad
2 changed files with 2 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2,6 +2,7 @@
* text=auto
builds/* -text
index.html -text
# Custom for Visual Studio
*.cs diff=csharp

View File

@ -6,4 +6,5 @@ var md = fs.readFileSync('README.md', 'utf8');
var content = marked(md);
var template = fs.readFileSync('template.jst', 'utf8');
var output = _.template(template)({content: content});
output = output.replace(/\r\n/g, '\n');
fs.writeFileSync('test.html', output);