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
@@ -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, e.g. `[light, dark]`"
7050
+
},
7044
7051
{
7045
7052
name: "tags",
7046
7053
tags: {
@@ -9567,6 +9574,11 @@ var require_yaml_intelligence_resources = __commonJS({
9567
9574
schema: "boolean",
9568
9575
description: "Provide button for copying search link"
9569
9576
},
9577
+
"merge-navbar-crumbs": {
9578
+
schema: "boolean",
9579
+
default: true,
9580
+
description: "When false, do not merge navbar crumbs into the crumbs in `search.json`."
9581
+
},
9570
9582
"keyboard-shortcut": {
9571
9583
maybeArrayOf: {
9572
9584
string: {
@@ -12499,7 +12511,7 @@ var require_yaml_intelligence_resources = __commonJS({
12499
12511
}
12500
12512
]
12501
12513
},
12502
-
description: "The font files to include as an array (`- path: <path>` or `- <path>`). These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"
12514
+
description: "The font files to include. These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"
12503
12515
}
12504
12516
},
12505
12517
required: [
@@ -12537,6 +12549,42 @@ var require_yaml_intelligence_resources = __commonJS({
12537
12549
}
12538
12550
}
12539
12551
},
12552
+
{
12553
+
id: "brand-path-bool-light-dark",
12554
+
anyOf: [
12555
+
"string",
12556
+
"boolean",
12557
+
{
12558
+
object: {
12559
+
closed: true,
12560
+
properties: {
12561
+
light: {
12562
+
anyOf: [
12563
+
"string",
12564
+
{
12565
+
ref: "brand"
12566
+
}
12567
+
],
12568
+
description: "The path to a light brand file or an inline light brand definition.\n"
12569
+
},
12570
+
dark: {
12571
+
anyOf: [
12572
+
"string",
12573
+
{
12574
+
ref: "brand"
12575
+
}
12576
+
],
12577
+
description: "The path to a dark brand file or an inline dark brand definition.\n"
12578
+
}
12579
+
}
12580
+
}
12581
+
},
12582
+
{
12583
+
ref: "brand"
12584
+
}
12585
+
],
12586
+
description: "Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"
12587
+
},
12540
12588
{
12541
12589
id: "brand-defaults",
12542
12590
object: {
@@ -15573,6 +15621,22 @@ var require_yaml_intelligence_resources = __commonJS({
15573
15621
},
15574
15622
description: "The paper size for the document.\n"
15575
15623
},
15624
+
{
15625
+
name: "brand-mode",
15626
+
schema: {
15627
+
enum: [
15628
+
"light",
15629
+
"dark"
15630
+
]
15631
+
},
15632
+
default: "light",
15633
+
tags: {
15634
+
formats: [
15635
+
"typst"
15636
+
]
15637
+
},
15638
+
description: "The brand mode to use for rendering the Typst document, `light` or `dark`.\n"
15639
+
},
15576
15640
{
15577
15641
name: "layout",
15578
15642
schema: {
@@ -16059,7 +16123,7 @@ var require_yaml_intelligence_resources = __commonJS({
16059
16123
schema: "string",
16060
16124
description: {
16061
16125
short: "A regular expression that can be used to determine whether a link is an internal link.",
16062
-
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"
16063
16127
}
16064
16128
},
16065
16129
{
@@ -16682,15 +16746,9 @@ var require_yaml_intelligence_resources = __commonJS({
16682
16746
{
16683
16747
name: "brand",
16684
16748
schema: {
16685
-
anyOf: [
16686
-
"string",
16687
-
"boolean",
16688
-
{
16689
-
ref: "brand"
16690
-
}
16691
-
]
16749
+
ref: "brand-path-bool-light-dark"
16692
16750
},
16693
-
description: "Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition.\n"
16751
+
description: "Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"
16694
16752
},
16695
16753
{
16696
16754
name: "theme",
@@ -16733,6 +16791,13 @@ var require_yaml_intelligence_resources = __commonJS({
16733
16791
},
16734
16792
description: "Theme name, theme scss file, or a mix of both."
16735
16793
},
16794
+
{
16795
+
name: "renderings",
16796
+
schema: {
16797
+
arrayOf: "string"
16798
+
},
16799
+
description: "Array of rendering names, e.g. `[light, dark]`"
16800
+
},
16736
16801
{
16737
16802
name: "body-classes",
16738
16803
tags: {
@@ -16811,6 +16876,20 @@ var require_yaml_intelligence_resources = __commonJS({
16811
16876
},
16812
16877
description: "Enables smooth scrolling within the page."
16813
16878
},
16879
+
{
16880
+
name: "respect-user-color-scheme",
16881
+
schema: "boolean",
16882
+
default: false,
16883
+
tags: {
16884
+
formats: [
16885
+
"$html-doc"
16886
+
]
16887
+
},
16888
+
description: {
16889
+
short: "Enables setting dark mode based on the `prefers-color-scheme` media query.",
16890
+
long: "If set, Quarto reads the `prefers-color-scheme` media query to determine whether to show\nthe user a dark or light page. Otherwise the author-preferred color scheme is shown.\n"
16891
+
}
16892
+
},
16814
16893
{
16815
16894
name: "html-math-method",
16816
16895
tags: {
@@ -19346,7 +19425,7 @@ var require_yaml_intelligence_resources = __commonJS({
19346
19425
"$html-doc"
19347
19426
]
19348
19427
},
19349
-
description: "Setting this to false prevents the `repo-actions` from appearing on this page."
19428
+
description: "Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
19350
19429
},
19351
19430
{
19352
19431
name: "aliases",
@@ -20893,6 +20972,7 @@ var require_yaml_intelligence_resources = __commonJS({
20893
20972
"Number of matches to display (defaults to 20)",
20894
20973
"Matches after which to collapse additional results",
20895
20974
"Provide button for copying search link",
20975
+
"When false, do not merge navbar crumbs into the crumbs in\n<code>search.json</code>.",
20896
20976
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
20897
20977
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
20898
20978
"Whether to include search result parents when displaying items in\nsearch results (when possible).",
@@ -21053,6 +21133,7 @@ var require_yaml_intelligence_resources = __commonJS({
21053
21133
"Number of matches to display (defaults to 20)",
21054
21134
"Matches after which to collapse additional results",
21055
21135
"Provide button for copying search link",
21136
+
"When false, do not merge navbar crumbs into the crumbs in\n<code>search.json</code>.",
21056
21137
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
21057
21138
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
21058
21139
"Whether to include search result parents when displaying items in\nsearch results (when possible).",
@@ -21900,14 +21981,18 @@ var require_yaml_intelligence_resources = __commonJS({
21900
21981
"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use.",
21901
21982
"A method for providing font files directly, either locally or from an\nonline location.",
21902
21983
"The font family name.",
21903
-
"The font files to include as an array (<em>i.e.</em>,\n<code>- path: <path></code>). These can be local or online. Local\nfile paths should be relative to the <code>brand.yml</code> file. Online\npaths should be complete URLs.",
21984
+
"The font files to include. These can be local or online. Local file\npaths should be relative to the <code>brand.yml</code> file. Online\npaths should be complete URLs.",
21904
21985
"The path to the font file. This can be a local path or a URL.",
21905
21986
"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system.",
21987
+
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don\u2019t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.",
21988
+
"The path to a light brand file or an inline light brand\ndefinition.",
21989
+
"The path to a dark brand file or an inline dark brand definition.",
21906
21990
{
21907
21991
short: "Unique label for code cell",
21908
21992
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>)"
21909
21993
},
21910
21994
"Classes to apply to cell container",
21995
+
"Array of rendering names, e.g. <code>[light, dark]</code>",
21911
21996
"Array of tags for notebook cell",
21912
21997
{
21913
21998
short: "Notebook cell identifier",
@@ -22687,6 +22772,7 @@ var require_yaml_intelligence_resources = __commonJS({
22687
22772
},
22688
22773
"Control the <code>\\pagestyle{}</code> for the document.",
22689
22774
"The paper size for the document.",
22775
+
"The brand mode to use for rendering the Typst document,\n<code>light</code> or <code>dark</code>.",
22690
22776
{
22691
22777
short: "The options for margins and text layout for this document.",
22692
22778
long: 'The options for margins and text layout for this document.\nSee <a href="https://wiki.contextgarden.net/Layout">ConTeXt\nLayout</a> for additional information.'
@@ -22779,7 +22865,7 @@ var require_yaml_intelligence_resources = __commonJS({
22779
22865
"Open external links in a new browser window or tab (rather than\nnavigating the current tab).",
22780
22866
{
22781
22867
short: "A regular expression that can be used to determine whether a link is\nan internal link.",
22782
-
long: "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith http://www.quarto.orgas internal links (and others will be\nconsidered external):"
22868
+
long: "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith <code>http://www.quarto.org/custom</code> or\n<code>https://www.quarto.org/custom</code> as internal links (and others\nwill be considered external):"
22783
22869
},
22784
22870
{
22785
22871
short: "Controls whether links to other rendered formats are displayed in\nHTML output.",
@@ -22872,7 +22958,7 @@ var require_yaml_intelligence_resources = __commonJS({
22872
22958
},
22873
22959
"If <code>true</code>, force the presence of the OJS runtime. If\n<code>false</code>, force the absence instead. If unset, the OJS runtime\nis included only if OJS cells are present in the document.",
22874
22960
"Use the specified file as a style reference in producing a docx,\npptx, or odt file.",
22875
-
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don\u2019t use branding on this document. If an\nobject, an inline brand definition.",
22961
+
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don\u2019t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.",
22876
22962
"Theme name, theme scss file, or a mix of both.",
22877
22963
"The light theme name, theme scss file, or a mix of both.",
22878
22964
"The light theme name, theme scss file, or a mix of both.",
@@ -22885,6 +22971,10 @@ var require_yaml_intelligence_resources = __commonJS({
22885
22971
"Enables hover over a section title to see an anchor link.",
22886
22972
"Enables tabsets to present content.",
22887
22973
"Enables smooth scrolling within the page.",
22974
+
{
22975
+
short: "Enables setting dark mode based on the\n<code>prefers-color-scheme</code> media query.",
22976
+
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."
22977
+
},
22888
22978
{
22889
22979
short: "Method use to render math in HTML output",
22890
22980
long: 'Method use to render math in HTML output (<code>plain</code>,\n<code>webtex</code>, <code>gladtex</code>, <code>mathml</code>,\n<code>mathjax</code>, <code>katex</code>).\nSee the Pandoc documentation on <a href="https://pandoc.org/MANUAL.html#math-rendering-in-html">Math\nRendering in HTML</a> for additional details.'
@@ -23258,7 +23348,7 @@ var require_yaml_intelligence_resources = __commonJS({
23258
23348
"Print a list of figures in the document.",
23259
23349
"Print a list of tables in the document.",
23260
23350
"Setting this to false prevents this document from being included in\nsearches.",
23261
-
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page.",
23351
+
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page. Other possible values are <code>none</code> or\none or more of <code>edit</code>, <code>source</code>, and\n<code>issue</code>, <em>e.g.</em>\n<code>[edit, source, issue]</code>.",
23262
23352
{
23263
23353
short: "Links to source repository actions",
23264
23354
long: "Links to source repository actions (<code>none</code> or one or more\nof <code>edit</code>, <code>source</code>, <code>issue</code>)"
@@ -23373,6 +23463,7 @@ var require_yaml_intelligence_resources = __commonJS({
23373
23463
"Number of matches to display (defaults to 20)",
23374
23464
"Matches after which to collapse additional results",
23375
23465
"Provide button for copying search link",
23466
+
"When false, do not merge navbar crumbs into the crumbs in\n<code>search.json</code>.",
23376
23467
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
23377
23468
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
23378
23469
"Whether to include search result parents when displaying items in\nsearch results (when possible).",
@@ -23726,6 +23817,7 @@ var require_yaml_intelligence_resources = __commonJS({
23726
23817
"Number of matches to display (defaults to 20)",
23727
23818
"Matches after which to collapse additional results",
23728
23819
"Provide button for copying search link",
23820
+
"When false, do not merge navbar crumbs into the crumbs in\n<code>search.json</code>.",
23729
23821
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
23730
23822
"One or more keys that will act as a shortcut to launch search (single\ncharacters)",
23731
23823
"Whether to include search result parents when displaying items in\nsearch results (when possible).",
@@ -23976,7 +24068,8 @@ var require_yaml_intelligence_resources = __commonJS({
23976
24068
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
23977
24069
"Manuscript configuration",
23978
24070
"internal-schema-hack",
23979
-
"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."
24071
+
"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.",
24072
+
"Array of rendering names, e.g. <code>[light, dark]</code>"
23980
24073
],
23981
24074
"schema/external-schemas.yml": [
23982
24075
{
@@ -24205,12 +24298,12 @@ var require_yaml_intelligence_resources = __commonJS({
24205
24298
mermaid: "%%"
24206
24299
},
24207
24300
"handlers/mermaid/schema.yml": {
24208
-
_internalId: 194332,
24301
+
_internalId: 194632,
24209
24302
type: "object",
24210
24303
description: "be an object",
24211
24304
properties: {
24212
24305
"mermaid-format": {
24213
-
_internalId: 194324,
24306
+
_internalId: 194624,
24214
24307
type: "enum",
24215
24308
enum: [
24216
24309
"png",
@@ -24226,7 +24319,7 @@ var require_yaml_intelligence_resources = __commonJS({
24226
24319
exhaustiveCompletions: true
24227
24320
},
24228
24321
theme: {
24229
-
_internalId: 194331,
24322
+
_internalId: 194631,
24230
24323
type: "anyOf",
24231
24324
anyOf: [
24232
24325
{
@@ -31356,6 +31449,51 @@ function guessChunkOptionsFormat(options) {
0 commit comments