We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cdbfa commit f0c58c0Copy full SHA for f0c58c0
src/command/render/filters.ts
@@ -65,6 +65,7 @@ import { kCodeAnnotations } from "../../format/html/format-html-shared.ts";
65
import { projectOutputDir } from "../../project/project-shared.ts";
66
import { relative } from "path/mod.ts";
67
import { citeIndexFilterParams } from "../../project/project-cites.ts";
68
+import { debug } from "log/mod.ts";
69
70
const kQuartoParams = "quarto-params";
71
@@ -545,6 +546,7 @@ function initFilterParams(dependenciesFile: string) {
545
546
if (Deno.build.os === "windows") {
547
const value = readCodePage();
548
if (value) {
549
+ debug("Windows: Using code page " + value);
550
Deno.env.set("QUARTO_WIN_CODEPAGE", value);
551
}
552
0 commit comments