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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ All changes included in 1.7:
62
62
- ([#12319](https://github.com/quarto-dev/quarto-cli/pull/12319)): Provide switchable light and dark brands for a page with `brand.light` and `brand.dark`.
63
63
- ([#12277](https://github.com/quarto-dev/quarto-cli/pull/12277)): Provide light and dark plot and table renderings with `renderings: [light,dark]`
64
64
- ([#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.
- ([#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.)
66
67
- ([#1470](https://github.com/quarto-dev/quarto-cli/issues/1470)): `respect-user-color-scheme` enables checking the media query `prefers-color-scheme` for user dark mode preference. This is only on page load, not dynamic. Author preference still influences stylesheet order and NoJS experience. Defaults to `false`, leaving to author preference.
67
68
- ([#12307](https://github.com/quarto-dev/quarto-cli/issues/12307)): Tabsets using `tabby.js` in non-boostrap html (`theme: pandoc`, `theme: none` or `minimal: true`) now correctly render reactive content when `server: shiny` is used.
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16123,7 +16123,7 @@ var require_yaml_intelligence_resources = __commonJS({
16123
16123
schema: "string",
16124
16124
description: {
16125
16125
short: "A regular expression that can be used to determine whether a link is an internal link.",
16126
-
long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
16126
+
long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
16127
16127
}
16128
16128
},
16129
16129
{
@@ -21985,7 +21985,7 @@ var require_yaml_intelligence_resources = __commonJS({
21985
21985
long: "Unique label for code cell. Used when other code needs to refer to\nthe cell (e.g. for cross references <code>fig-samples</code> or\n<code>tbl-summary</code>)"
21986
21986
},
21987
21987
"Classes to apply to cell container",
21988
-
"Array of rendering names",
21988
+
"Array of rendering names, e.g. <code>[light, dark]</code>",
21989
21989
"Array of tags for notebook cell",
21990
21990
{
21991
21991
short: "Notebook cell identifier",
@@ -22965,8 +22965,8 @@ var require_yaml_intelligence_resources = __commonJS({
22965
22965
"Enables tabsets to present content.",
22966
22966
"Enables smooth scrolling within the page.",
22967
22967
{
22968
-
short: "Whether the <code>prefers-color-scheme</code> media query controls\ndark mode.",
22969
-
long: "Whether to use the <code>prefers-color-scheme</code> media query to\ndetermine whether to show the user a dark or light page. Otherwise the\nauthor preference (order of <code>light</code> and <code>dark</code> in\n<code>theme</code> or <code>brand</code>) determines what is shown to\nthe user at first visit."
22968
+
short: "Enables setting dark mode based on the\n<code>prefers-color-scheme</code> media query.",
22969
+
long: "If set, Quarto reads the <code>prefers-color-scheme</code> media\nquery to determine whether to show the user a dark or light page.\nOtherwise the author-preferred color scheme is shown."
22970
22970
},
22971
22971
{
22972
22972
short: "Method use to render math in HTML output",
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9095,7 +9095,7 @@
9095
9095
"schema": "string",
9096
9096
"description": {
9097
9097
"short": "A regular expression that can be used to determine whether a link is an internal link.",
9098
-
"long": "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
9098
+
"long": "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
9099
9099
}
9100
9100
},
9101
9101
{
@@ -14957,7 +14957,7 @@
14957
14957
"long": "Unique label for code cell. Used when other code needs to refer to\nthe cell (e.g. for cross references <code>fig-samples</code> or\n<code>tbl-summary</code>)"
14958
14958
},
14959
14959
"Classes to apply to cell container",
14960
-
"Array of rendering names",
14960
+
"Array of rendering names, e.g. <code>[light, dark]</code>",
14961
14961
"Array of tags for notebook cell",
14962
14962
{
14963
14963
"short": "Notebook cell identifier",
@@ -15937,8 +15937,8 @@
15937
15937
"Enables tabsets to present content.",
15938
15938
"Enables smooth scrolling within the page.",
15939
15939
{
15940
-
"short": "Whether the <code>prefers-color-scheme</code> media query controls\ndark mode.",
15941
-
"long": "Whether to use the <code>prefers-color-scheme</code> media query to\ndetermine whether to show the user a dark or light page. Otherwise the\nauthor preference (order of <code>light</code> and <code>dark</code> in\n<code>theme</code> or <code>brand</code>) determines what is shown to\nthe user at first visit."
15940
+
"short": "Enables setting dark mode based on the\n<code>prefers-color-scheme</code> media query.",
15941
+
"long": "If set, Quarto reads the <code>prefers-color-scheme</code> media\nquery to determine whether to show the user a dark or light page.\nOtherwise the author-preferred color scheme is shown."
15942
15942
},
15943
15943
{
15944
15944
"short": "Method use to render math in HTML output",
0 commit comments