You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: news/changelog-1.7.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,9 @@ All changes included in 1.7:
43
43
44
44
## `html` format
45
45
46
+
- ([#12277](https://github.com/quarto-dev/quarto-cli/pull/12277)): Provide light and dark plot and table renderings with `renderings: [light,dark]`
46
47
- ([#11860](https://github.com/quarto-dev/quarto-cli/issues/11860)): ES6 modules that import other local JS modules in documents with `embed-resources: true` are now correctly embedded.
48
+
- ([#1325](https://github.com/quarto-dev/quarto-cli/issues/1325)): Dark Mode pages should not flash light on reload. (Nor should Light Mode pages flash dark.)
47
49
48
50
## `pdf` format
49
51
@@ -101,3 +103,4 @@ All changes included in 1.7:
101
103
- ([#10961](https://github.com/quarto-dev/quarto-cli/issues/10961)): Add more information on which Chrome Headless will be used in `quarto check install`. This is helpful to help debug mermaid issues.
102
104
- ([#11951](https://github.com/quarto-dev/quarto-cli/issues/11951)): Raw LaTeX table without `tbl-` prefix label for using Quarto crossref are now correctly passed through unmodified.
103
105
- ([#12117](https://github.com/quarto-dev/quarto-cli/issues/12117)): Color output to stdout and stderr is now correctly rendered for `html` format in the Jupyter and Julia engines.
106
+
- ([#12264](https://github.com/quarto-dev/quarto-cli/issues/12264)): Upgrade `dart-sass` to 1.85.1.
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+32-5Lines changed: 32 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7041,6 +7041,13 @@ var require_yaml_intelligence_resources = __commonJS({
7041
7041
schema: "string",
7042
7042
description: "Classes to apply to cell container"
7043
7043
},
7044
+
{
7045
+
name: "renderings",
7046
+
schema: {
7047
+
arrayOf: "string"
7048
+
},
7049
+
description: "Array of rendering names"
7050
+
},
7044
7051
{
7045
7052
name: "tags",
7046
7053
tags: {
@@ -19887,6 +19894,13 @@ var require_yaml_intelligence_resources = __commonJS({
19887
19894
},
19888
19895
errorMessage: "type key not supported at project type-level. Use `project: type: ...` instead.",
19889
19896
description: "internal-schema-hack"
19897
+
},
19898
+
{
19899
+
name: "engines",
19900
+
schema: {
19901
+
arrayOf: "string"
19902
+
},
19903
+
description: "List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."
19890
19904
}
19891
19905
],
19892
19906
"schema/schema.yml": [
@@ -23967,7 +23981,9 @@ var require_yaml_intelligence_resources = __commonJS({
23967
23981
},
23968
23982
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
23969
23983
"Manuscript configuration",
23970
-
"internal-schema-hack"
23984
+
"internal-schema-hack",
23985
+
"Array of rendering names",
23986
+
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019."
23971
23987
],
23972
23988
"schema/external-schemas.yml": [
23973
23989
{
@@ -24196,12 +24212,12 @@ var require_yaml_intelligence_resources = __commonJS({
24196
24212
mermaid: "%%"
24197
24213
},
24198
24214
"handlers/mermaid/schema.yml": {
24199
-
_internalId: 194269,
24215
+
_internalId: 194327,
24200
24216
type: "object",
24201
24217
description: "be an object",
24202
24218
properties: {
24203
24219
"mermaid-format": {
24204
-
_internalId: 194261,
24220
+
_internalId: 194319,
24205
24221
type: "enum",
24206
24222
enum: [
24207
24223
"png",
@@ -24217,7 +24233,7 @@ var require_yaml_intelligence_resources = __commonJS({
24217
24233
exhaustiveCompletions: true
24218
24234
},
24219
24235
theme: {
24220
-
_internalId: 194268,
24236
+
_internalId: 194326,
24221
24237
type: "anyOf",
24222
24238
anyOf: [
24223
24239
{
@@ -33253,11 +33269,22 @@ var jupyterEngineSchema = defineCached(
0 commit comments