-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgh-pages.mjs
43 lines (36 loc) · 1.43 KB
/
gh-pages.mjs
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
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env zx
var ghpages = require('gh-pages');
await $`rm -fr ./dist`
await $`mkdir -p ./dist`
await $`cp -r jupyter-js/build/dokka/html dist/kt-docs`
await $`cp -r examples-html dist/examples`
await $`cp docs/theme.css dist/theme.css`
await $`cp docs/prism.js dist/prism.js`
const enMd = await $`npx markdown docs/how-kotlin-jupyter-work.md --stylesheet theme.css --flavor gfm --highlight`
function format(str) {
return str
.replaceAll('<body>', '<body><div class="markdown-body">')
.replaceAll('</body>', '<script src="prism.js" ></script></div></body>')
.replaceAll('<p><details>', '<details>')
.replaceAll('<summary>', '<summary>')
.replaceAll('</summary>', '</summary>')
.replaceAll('</details>\n\n</p>', '</details>')
.replaceAll('<code>', '<code>')
.replaceAll('</code>', '</code>')
.replaceAll('<br>', '')
}
await fs.writeFile(
'./dist/how-kotlin-jupyter-work.html',
format(enMd.stdout.toString())
)
const cnMd = await $`npx markdown docs/how-kotlin-jupyter-work.zh-CN.md --stylesheet theme.css --flavor gfm --highlight`
await fs.writeFile(
'./dist/how-kotlin-jupyter-work.zh-CN.html',
format(cnMd.stdout.toString())
)
ghpages.publish('./dist', {
repo: "https://github.com/yidafu/kotlin-jupyter-js.git",
}, function(err) {
if (err) console.log(err)
else console.log(chalk.green("updated github pages"))
});