-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
marp-cli.ts
480 lines (441 loc) · 14.1 KB
/
marp-cli.ts
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
import chalk from 'chalk'
import { Argv } from 'yargs'
import yargs from 'yargs/yargs'
import * as cli from './cli'
import fromArguments from './config'
import { Converter, ConvertedCallback, ConvertType } from './converter'
import { CLIError, error, isError } from './error'
import { File, FileType } from './file'
import { Preview, fileToURI } from './preview'
import { Server } from './server'
import templates from './templates'
import { isOfficialImage } from './utils/docker'
import { resetExecutablePath } from './utils/puppeteer'
import version from './version'
import watcher, { Watcher, notifier } from './watcher'
enum OptionGroup {
Basic = 'Basic Options:',
Converter = 'Converter Options:',
Template = 'Template Options:',
PDF = 'PDF Options:',
Meta = 'Metadata Options:',
Marp = 'Marp / Marpit Options:',
}
export interface MarpCLIInternalOptions {
baseUrl?: string
stdin: boolean
throwErrorAlways: boolean
}
export type MarpCLIAPIOptions = Pick<MarpCLIInternalOptions, 'baseUrl'>
export interface ObservationHelper {
stop: () => void
}
const resolversForObservation: ((helper: ObservationHelper) => void)[] = []
const usage = `
Usage:
marp [options] <files...>
marp [options] -I <dir>
`.trim()
export const marpCli = async (
argv: string[],
{ baseUrl, stdin: defaultStdin, throwErrorAlways }: MarpCLIInternalOptions
): Promise<number> => {
let server: Server | undefined
let watcherInstance: Watcher | undefined
try {
const base: Argv = yargs(argv)
const program = base
.parserConfiguration({ 'dot-notation': false })
.usage(usage)
.help(false)
.version(false)
.options({
version: {
alias: 'v',
describe: 'Show versions',
group: OptionGroup.Basic,
type: 'boolean',
},
help: {
alias: 'h',
describe: 'Show help',
group: OptionGroup.Basic,
type: 'boolean',
},
output: {
alias: 'o',
describe: 'Output file path (or directory when input-dir is passed)',
group: OptionGroup.Basic,
type: 'string',
},
'input-dir': {
alias: 'I',
describe: 'The base directory to find markdown and theme CSS',
group: OptionGroup.Basic,
type: 'string',
},
'config-file': {
alias: ['config', 'c'],
describe: 'Specify path to a configuration file',
group: OptionGroup.Basic,
type: 'string',
},
'no-config-file': {
alias: ['no-config'],
type: 'boolean',
describe: 'Prevent looking up for a configuration file',
group: OptionGroup.Basic,
},
watch: {
alias: 'w',
describe: 'Watch input markdowns for changes',
group: OptionGroup.Basic,
type: 'boolean',
},
server: {
alias: 's',
describe: 'Enable server mode',
group: OptionGroup.Basic,
type: 'boolean',
},
preview: {
alias: 'p',
describe: 'Open preview window',
hidden: isOfficialImage(),
group: OptionGroup.Basic,
type: 'boolean',
},
stdin: {
default: defaultStdin,
describe: 'Read Markdown from stdin',
hidden: true, // It is an escape-hatch for advanced user
group: OptionGroup.Basic,
type: 'boolean',
},
pdf: {
conflicts: ['image', 'images', 'pptx', 'notes'],
describe: 'Convert slide deck into PDF',
group: OptionGroup.Converter,
type: 'boolean',
},
pptx: {
conflicts: ['pdf', 'image', 'images', 'notes'],
describe: 'Convert slide deck into PowerPoint document',
group: OptionGroup.Converter,
type: 'boolean',
},
notes: {
conflicts: ['image', 'images', 'pptx', 'pdf'],
describe: 'Convert slide deck notes into a text file',
group: OptionGroup.Converter,
type: 'boolean',
},
image: {
conflicts: ['pdf', 'images', 'pptx', 'notes'],
describe: 'Convert the first slide page into an image file',
group: OptionGroup.Converter,
choices: ['png', 'jpeg'],
coerce: (type: string) => {
if (type === '') return 'png'
if (type === 'jpg') return 'jpeg'
return type
},
type: 'string',
},
images: {
conflicts: ['pdf', 'image', 'pptx', 'notes'],
describe: 'Convert slide deck into multiple image files',
group: OptionGroup.Converter,
choices: ['png', 'jpeg'],
coerce: (type: string) => {
if (type === '') return 'png'
if (type === 'jpg') return 'jpeg'
return type
},
type: 'string',
},
'image-scale': {
defaultDescription: '1 (or 2 for PPTX conversion)',
describe: 'The scale factor for rendered images',
group: OptionGroup.Converter,
type: 'number',
},
'jpeg-quality': {
defaultDescription: '85',
describe: 'Set JPEG image quality',
group: OptionGroup.Converter,
type: 'number',
},
'allow-local-files': {
describe:
'Allow to access local files from Markdown while converting PDF, PPTX, or image (NOT SECURE)',
group: OptionGroup.Converter,
type: 'boolean',
},
template: {
describe: 'Choose template',
defaultDescription: 'bespoke',
group: OptionGroup.Template,
choices: Object.keys(templates),
type: 'string',
},
'bespoke.osc': {
describe: '[Bespoke] Use on-screen controller',
defaultDescription: 'true',
group: OptionGroup.Template,
type: 'boolean',
},
'bespoke.progress': {
describe: '[Bespoke] Use progress bar',
defaultDescription: 'false',
group: OptionGroup.Template,
type: 'boolean',
},
'bespoke.transition': {
describe:
'[Bespoke] Use transitions (Only in browsers supported View Transitions API)',
defaultDescription: 'true',
group: OptionGroup.Template,
type: 'boolean',
},
'pdf-notes': {
describe: 'Add presenter notes to PDF as annotations',
group: OptionGroup.PDF,
type: 'boolean',
},
'pdf-outlines': {
describe: 'Add outlines (bookmarks) to PDF',
group: OptionGroup.PDF,
type: 'boolean',
},
'pdf-outlines.pages': {
describe: 'Make outlines from slide pages',
defaultDescription: 'true',
group: OptionGroup.PDF,
type: 'boolean',
},
'pdf-outlines.headings': {
describe: 'Make outlines from Markdown headings',
defaultDescription: 'true',
group: OptionGroup.PDF,
type: 'boolean',
},
title: {
describe: 'Define title of the slide deck',
group: OptionGroup.Meta,
type: 'string',
},
description: {
describe: 'Define description of the slide deck',
group: OptionGroup.Meta,
type: 'string',
},
author: {
describe: 'Define author of the slide deck',
group: OptionGroup.Meta,
type: 'string',
},
keywords: {
describe: 'Define comma-separated keywords for the slide deck',
group: OptionGroup.Meta,
type: 'string',
},
url: {
describe: 'Define canonical URL',
group: OptionGroup.Meta,
type: 'string',
},
'og-image': {
describe: 'Define Open Graph image URL',
group: OptionGroup.Meta,
type: 'string',
},
engine: {
describe: 'Select Marpit based engine by module name or path',
group: OptionGroup.Marp,
type: 'string',
},
html: {
describe: 'Enable or disable HTML tags',
group: OptionGroup.Marp,
type: 'boolean',
},
theme: {
describe: 'Override theme by name or CSS file',
group: OptionGroup.Marp,
type: 'string',
},
'theme-set': {
array: true,
describe: 'Path to additional theme CSS files',
group: OptionGroup.Marp,
type: 'string',
},
})
const argvRet = await program.argv
const args = {
baseUrl, // It's not intended using by the consumer so can't set through CLI arguments
...argvRet,
_: argvRet._.map((v) => v.toString()),
}
if (args.help) {
program.showHelp('log')
return 0
}
const config = await fromArguments(args)
if (args.version) return await version(config)
// Initialize converter
const converter = new Converter(await config.converterOption())
const cvtOpts = converter.options
// Find target markdown files
const finder = async (): Promise<File[]> => {
if (cvtOpts.inputDir) {
if (config.files.length > 0) {
cli.error('Cannot pass files together with input directory.')
return []
}
// Find directory to keep dir structure of input dir in output
return File.findDir(cvtOpts.inputDir)
}
// Read from stdin
// (May disable by --no-stdin option to avoid hung up while reading)
// @see https://github.com/marp-team/marp-cli/issues/93
const stdin = args.stdin ? await File.stdin() : undefined
// Regular file finding powered by globby
return [stdin, ...(await File.find(...config.files))].filter(
(f): f is File => !!f
)
}
const foundFiles = await finder()
const { length } = foundFiles
if (length === 0) {
if (config.files.length > 0) {
cli.warn('Not found processable Markdown file(s).\n')
program.showHelp('error')
return 1
} else {
program.showHelp('log')
return 0
}
}
// Convert markdown into HTML
const convertedFiles: File[] = []
const onConverted: ConvertedCallback = (ret) => {
const { file: i, newFile: o } = ret
if (!o) return
const fn = (f: File, stdio: string) =>
f.type === FileType.StandardIO ? stdio : f.relativePath()
convertedFiles.push(o)
cli.info(
`${fn(i, '<stdin>')} ${
o.type === FileType.Null ? 'processed.' : `=> ${fn(o, '<stdout>')}`
}`,
{ singleLine: true }
)
}
try {
if (cvtOpts.server) {
await converter.convertFiles(foundFiles, { onlyScanning: true })
} else {
cli.info(`Converting ${length} markdown${length > 1 ? 's' : ''}...`)
await converter.convertFiles(foundFiles, { onConverted })
}
} catch (e: unknown) {
if (isError(e)) {
const errorCode = e instanceof CLIError ? e.errorCode : undefined
error(`Failed converting Markdown. (${e.message})`, errorCode)
} else {
throw e
}
}
// Watch mode / Server mode
if (cvtOpts.watch) {
return await new Promise<number>((res, rej) =>
(async () => {
watcherInstance = watcher(
[
...(cvtOpts.inputDir ? [cvtOpts.inputDir] : config.files),
...cvtOpts.themeSet.fnForWatch,
],
{
converter,
finder,
events: {
onConverted,
onError: (e) =>
cli.error(`Failed converting Markdown. (${e.message})`),
},
mode: cvtOpts.server
? Watcher.WatchMode.Notify
: Watcher.WatchMode.Convert,
}
)
// Preview window
const preview = new Preview()
preview.on('exit', () => res(0))
preview.on('opening', (location: string) => {
const loc = location.substr(0, 50)
const msg = `[Preview] Opening ${loc}...`
cli.info(chalk.cyan(msg))
})
if (cvtOpts.server) {
server = new Server(converter, {
directoryIndex: ['index.md', 'PITCHME.md'], // GitPitch compatible
})
server.on('converted', onConverted)
server.on('error', (e) => cli.error(e.toString()))
await server.start()
const url = `http://localhost:${server.port}`
const message = `[Server mode] Start server listened at ${url}/ ...`
cli.info(chalk.green(message))
if (cvtOpts.preview) await preview.open(url)
} else {
cli.info(chalk.green('[Watch mode] Start watching...'))
if (cvtOpts.preview) {
for (const file of convertedFiles) {
if (cvtOpts.type === ConvertType.pptx) continue
await preview.open(fileToURI(file, cvtOpts.type))
}
}
}
let resolverForObservation:
| ((helper: ObservationHelper) => void)
| undefined
while ((resolverForObservation = resolversForObservation.shift())) {
resolverForObservation({ stop: () => res(0) })
}
})().catch(rej)
)
}
return 0
} catch (e: unknown) {
if (throwErrorAlways || !(e instanceof CLIError)) throw e
cli.error(e.message)
return e.errorCode
} finally {
await Promise.all([
notifier.stop(),
Converter.closeBrowser(),
server?.stop(),
watcherInstance?.chokidar.close(),
])
}
}
export const waitForObservation = () =>
new Promise<ObservationHelper>((res) => {
resolversForObservation.push(res)
})
export const apiInterface = (argv: string[], opts: MarpCLIAPIOptions = {}) => {
resetExecutablePath()
return marpCli(argv, {
...opts,
stdin: false,
throwErrorAlways: true,
})
}
export const cliInterface = (argv: string[] = []) =>
marpCli(argv, {
stdin: true,
throwErrorAlways: false,
})
export default cliInterface