File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ import { figuresDir, inputFilesDir } from "../render.ts";
143
143
import { lines } from "../text.ts" ;
144
144
import { readYamlFromMarkdown } from "../yaml.ts" ;
145
145
import { languagesInMarkdown } from "../../execute/engine-shared.ts" ;
146
+ import { pathWithForwardSlashes } from "../path.ts" ;
146
147
147
148
export const kJupyterNotebookExtensions = [
148
149
".ipynb" ,
@@ -574,9 +575,9 @@ export function jupyterAssets(input: string, to?: string) {
574
575
const base_dir = dirname ( input ) ;
575
576
return {
576
577
base_dir,
577
- files_dir : relative ( base_dir , files_dir ) ,
578
- figures_dir : relative ( base_dir , figures_dir ) ,
579
- supporting_dir : relative ( base_dir , supporting_dir ) ,
578
+ files_dir : pathWithForwardSlashes ( relative ( base_dir , files_dir ) ) ,
579
+ figures_dir : pathWithForwardSlashes ( relative ( base_dir , figures_dir ) ) ,
580
+ supporting_dir : pathWithForwardSlashes ( relative ( base_dir , supporting_dir ) ) ,
580
581
} ;
581
582
}
582
583
You can’t perform that action at this time.
0 commit comments