-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreview.js
35 lines (29 loc) · 886 Bytes
/
preview.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
34
35
const asciidoctor = require('@asciidoctor/core')();
const asciidoctorRevealjs = require('@asciidoctor/reveal.js');
asciidoctorRevealjs.register();
const browserSync = require("browser-sync");
const bs = browserSync.create();
const adocFile = process.argv[2];
if (!adocFile) {
console.error(
"You must specify an asciidoctor file to be previewed! Example:\n",
"node preview.js test\\test.adoc"
);
return;
}
function convertFile(cause) {
asciidoctor.convertFile(adocFile, { safe: 'safe', backend: 'revealjs' });
console.log(`Converted file: '${adocFile}' (${cause})`);
}
function watchCallback(filename) {
if (!filename.endsWith(".html") && !filename.startsWith(".")) {
convertFile(`'${filename}' changed`);
bs.reload();
}
}
convertFile("startup");
bs.watch(".").on("change", watchCallback);
bs.init({
server: true,
startPath: adocFile.replace(".adoc", ".html")
});