Skip to content

Commit

Permalink
fix titles for some pages
Browse files Browse the repository at this point in the history
  • Loading branch information
hrfee committed Jan 10, 2022
1 parent 6448a7d commit 8758d74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/missing-colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ function fixHTML(infile, outfile) {
let s = templateStrings[i].replace(/\\/g, '');
out = out.replaceAll("<!--" + s.slice(3).slice(0, -3) + "-->", s);
}
out = out.replaceAll("&lt;!--", "{{");
out = out.replaceAll("--&gt;", "}}");
fs.writeFileSync(outfile, out);
console.log(infile, outfile);
};
Expand Down

0 comments on commit 8758d74

Please sign in to comment.