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 ac0156c commit ecb1f12Copy full SHA for ecb1f12
src/core/handlers/embed.ts
@@ -1,9 +1,8 @@
1
/*
2
-* embed.ts
3
-*
4
-* Copyright (C) 2022 by Posit, PBC
5
6
-*/
+ * embed.ts
+ *
+ * Copyright (C) 2022-2025 by Posit, PBC
+ */
7
8
import { LanguageCellHandlerContext, LanguageHandler } from "./types.ts";
9
import { baseHandler, install } from "./base.ts";
@@ -63,7 +62,8 @@ const kHandlers: EmbedHandler[] = [
63
62
handled: true,
64
markdownFragments,
65
resources: [
66
- notebookAddress.path,
+ // Narrow fix for https://github.com/quarto-dev/quarto-cli/issues/9224
+ notebookAddress.path.replaceAll("\\_", "\\\\_"),
67
],
68
});
69
} else {
0 commit comments