This commit is contained in:
Tony Brix 2018-01-06 01:19:43 -06:00
parent 9e0ec53ebb
commit e5571beb52

View File

@ -323,7 +323,7 @@ function fix() {
var text = fs.readFileSync(path.resolve(__dirname, 'original', file));
if (file.indexOf('hard_wrapped_paragraphs_with_list_like_lines.md') === 0) {
text = "---\ngfm: false\n---\n" + text;
text = '---\ngfm: false\n---\n' + text;
}
fs.writeFileSync(path.resolve(__dirname, 'compiled_tests', file), text);
});