-
-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathcli.js
executable file
·72 lines (56 loc) · 1.52 KB
/
cli.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import fs from 'fs';
import argparse from 'argparse';
import { Remarkable } from './index';
import { linkify } from './linkify';
import { version } from '../package.json';
////////////////////////////////////////////////////////////////////////////////
var cli = new argparse.ArgumentParser({
prog: 'remarkable',
version: version,
addHelp: true
});
cli.addArgument([ 'file' ], {
help: 'File to read',
nargs: '?',
defaultValue: '-'
});
var options = cli.parseArgs();
function readFile(filename, encoding, callback) {
if (options.file === '-') {
var chunks = [];
// read from stdin
process.stdin.on('data', function(chunk) {
chunks.push(chunk);
});
process.stdin.on('end', function() {
return callback(null, Buffer.concat(chunks).toString(encoding));
});
} else {
fs.readFile(filename, encoding, callback);
}
}
////////////////////////////////////////////////////////////////////////////////
readFile(options.file, 'utf8', function (err, input) {
var output, md;
if (err) {
if (err.code === 'ENOENT') {
console.error('File not found: ' + options.file);
process.exit(2);
}
console.error(err.stack || err.message || String(err));
process.exit(1);
}
md = new Remarkable('full', {
html: true,
xhtmlOut: true,
typographer: true,
}).use(linkify);
try {
output = md.render(input);
} catch (e) {
console.error(e.stack || e.message || String(e));
process.exit(1);
}
process.stdout.write(output);
process.exit(0);
});