forked from danieldelcore/mega-interview-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
33 lines (26 loc) · 907 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const fs = require("fs-extra");
const marked = require("marked");
const highlights = require("highlight.js");
async function main() {
if (fs.existsSync("build")) {
await fs.rmdir("build", { recursive: true });
}
await fs.mkdir("build");
await fs.copy("./assets", "./build/assets");
await fs.copy("./assets", "./build/assets");
await fs.copyFile("index.html", "./build/index.html");
const readmeFile = await fs.readFile("./README.md", "utf8");
const targetFile = await fs.readFile("./build/index.html", "utf8");
marked.setOptions({
highlight: (code, lang, callback) => {
const language = highlights.getLanguage(lang) ? lang : "plaintext";
return highlights.highlight(code, { language }).value;
},
});
const result = targetFile.replace(
"<!-- REPLACE_HERE -->",
marked(readmeFile)
);
await fs.writeFile("./build/index.html", result);
}
main();