-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathcmd.ts
More file actions
290 lines (273 loc) · 8.24 KB
/
cmd.ts
File metadata and controls
290 lines (273 loc) · 8.24 KB
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
/*
* cmd.ts
*
* Copyright (C) 2020-2022 Posit Software, PBC
*/
import { dirname, relative } from "../../deno_ral/path.ts";
import { expandGlobSync } from "../../deno_ral/fs.ts";
import { Command } from "cliffy/command/mod.ts";
import { debug, info, warning } from "../../deno_ral/log.ts";
import { fixupPandocArgs, kStdOut, parseRenderFlags } from "./flags.ts";
import { renderResultFinalOutput } from "./render.ts";
import { render } from "./render-shared.ts";
import { renderServices } from "./render-services.ts";
import { RenderResult } from "./types.ts";
import { kCliffyImplicitCwd } from "../../config/constants.ts";
import { InternalError } from "../../core/lib/error.ts";
import { notebookContext } from "../../render/notebook/notebook-context.ts";
export const renderCommand = new Command()
.name("render")
.stopEarly()
.arguments("[input:string] [...args]")
.description(
"Render files or projects to various document types.",
)
.option(
"-t, --to",
"Specify output format(s).",
)
.option(
"-o, --output",
"Write output to FILE (use '--output -' for stdout).",
)
.option(
"--output-dir",
"Write output to DIR, which is first deleted (path is input/project relative)",
)
.option(
"-M, --metadata",
"Metadata value (KEY:VALUE).",
)
.option(
"--site-url",
"Override site-url for website or book output",
)
.option(
"--execute",
"Execute code (--no-execute to skip execution).",
)
.option(
"-P, --execute-param",
"Execution parameter (KEY:VALUE).",
)
.option(
"--execute-params",
"YAML file with execution parameters.",
)
.option(
"--execute-dir",
"Working directory for code execution.",
)
.option(
"--execute-daemon",
"Keep Jupyter kernel alive (defaults to 300 seconds).",
)
.option(
"--execute-daemon-restart",
"Restart keepalive Jupyter kernel before render.",
)
.option(
"--execute-debug",
"Show debug output when executing computations.",
)
.option(
"--use-freezer",
"Force use of frozen computations for an incremental file render.",
)
.option(
"--cache",
"Cache execution output (--no-cache to prevent cache).",
)
.option(
"--cache-refresh",
"Force refresh of execution cache.",
)
.option(
"--no-clean",
"Do not delete output-dir prior to render",
)
.option(
"--debug",
"Leave intermediate files in place after render.",
)
.option(
"pandoc-args...",
"Additional pandoc command line arguments.",
)
.example(
"Render Markdown",
"quarto render document.qmd\n" +
"quarto render document.qmd --to html\n" +
"quarto render document.qmd --to pdf --toc",
)
.example(
"Render Notebook",
"quarto render notebook.ipynb\n" +
"quarto render notebook.ipynb --to docx\n" +
"quarto render notebook.ipynb --to pdf --toc",
)
.example(
"Render Project",
"quarto render\n" +
"quarto render projdir",
)
.example(
"Render w/ Metadata",
"quarto render document.qmd -M echo:false\n" +
"quarto render document.qmd -M code-fold:true",
)
.example(
"Render to Stdout",
"quarto render document.qmd --output -",
)
// deno-lint-ignore no-explicit-any
.action(async (options: any, input?: string, ...args: string[]) => {
// remove implicit clean argument (re-injected based on what the user
// actually passes in flags.ts)
if (options === undefined) {
throw new InternalError("Expected `options` to be an object");
}
delete options.clean;
// if an option got defined then this was mis-parsed as an 'option'
// rather than an 'arg' because no input was passed. reshuffle
// things to make them work
if (Object.keys(options).length === 1) {
const option = Object.keys(options)[0];
const optionArg = option.replaceAll(
/([A-Z])/g,
(_match: string, p1: string) => `-${p1.toLowerCase()}`,
);
if (input) {
args.unshift(input);
input = undefined;
}
args.unshift("--" + optionArg);
delete options[option];
}
// show help if requested
if (args.length > 0 && args[0] === "--help" || args[0] === "-h") {
renderCommand.showHelp();
return;
}
// if input is missing but there exists an args parameter which is a .qmd or .ipynb file,
// issue a warning.
if (!input || input === kCliffyImplicitCwd) {
input = Deno.cwd();
debug(`Render: Using current directory (${input}) as implicit input`);
const firstArg = args.find((arg) =>
arg.endsWith(".qmd") || arg.endsWith(".ipynb")
);
if (firstArg) {
warning(
"`quarto render` invoked with no input file specified (the parameter order matters).\nQuarto will render the current directory by default.\n" +
`Did you mean to run \`quarto render ${firstArg} ${
args.filter((arg) => arg !== firstArg).join(" ")
}\`?\n` +
"Use `quarto render --help` for more information.",
);
}
}
const inputs = [input!];
const firstPandocArg = args.findIndex((arg) => arg.startsWith("-"));
if (firstPandocArg !== -1) {
inputs.push(...args.slice(0, firstPandocArg));
args = args.slice(firstPandocArg);
}
// found by
// $ pandoc --help | grep '\[='
// cf https://github.com/jgm/pandoc/issues/8013#issuecomment-1094162866
const pandocArgsWithOptionalValues = [
"--file-scope",
"--sandbox",
"--standalone",
"--ascii",
"--toc",
"--preserve-tabs",
"--self-contained",
"--embed-resources",
"--no-check-certificate",
"--strip-comments",
"--reference-links",
"--list-tables",
"--listings",
"--incremental",
"--section-divs",
"--html-q-tags",
"--epub-title-page",
"--webtex",
"--mathjax",
"--katex",
"--trace",
"--dump-args",
"--ignore-args",
"--fail-if-warnings",
"--list-extensions",
];
// normalize args (to deal with args like --foo=bar)
const normalizedArgs = [];
for (const arg of args) {
const equalSignIndex = arg.indexOf("=");
if (
equalSignIndex > 0 && arg.startsWith("-") &&
!pandocArgsWithOptionalValues.includes(arg.slice(0, equalSignIndex))
) {
// Split the arg at the first equal sign
normalizedArgs.push(arg.slice(0, equalSignIndex));
normalizedArgs.push(arg.slice(equalSignIndex + 1));
} else {
normalizedArgs.push(arg);
}
}
args = normalizedArgs;
// extract pandoc flag values we know/care about, then fixup args as
// necessary (remove our flags that pandoc doesn't know about)
const flags = await parseRenderFlags(args);
args = fixupPandocArgs(args, flags);
// run render on input files
let renderResult: RenderResult | undefined;
let renderResultInput: string | undefined;
for (const input of inputs) {
for (const walk of expandGlobSync(input)) {
const services = renderServices(notebookContext());
try {
renderResultInput = relative(Deno.cwd(), walk.path) || ".";
if (renderResult) {
renderResult.context.cleanup();
}
renderResult = await render(renderResultInput, {
services,
flags,
pandocArgs: args,
useFreezer: flags.useFreezer === true,
setProjectDir: true,
});
// check for error
if (renderResult.error) {
renderResult.context.cleanup();
throw renderResult.error;
}
} finally {
services.cleanup();
}
}
}
if (renderResult && renderResultInput) {
// report output created
if (!options.flags?.quiet && options.flags?.output !== kStdOut) {
const finalOutput = renderResultFinalOutput(
renderResult,
Deno.statSync(renderResultInput).isDirectory
? renderResultInput
: dirname(renderResultInput),
);
if (finalOutput) {
info("Output created: " + finalOutput + "\n");
}
if (renderResult) {
renderResult.context.cleanup();
}
}
} else {
throw new Error(`No valid input files passed to render`);
}
});