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: src/resources/editor/tools/vs-code.mjs
+61-10Lines changed: 61 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -17142,7 +17142,19 @@ var require_yaml_intelligence_resources = __commonJS({
17142
17142
"beamer"
17143
17143
]
17144
17144
},
17145
-
description: "The Beamer color theme for this presentation."
17145
+
description: "The Beamer color theme for this presentation, passed to `\\usecolortheme`."
17146
+
},
17147
+
{
17148
+
name: "colorthemeoptions",
17149
+
schema: {
17150
+
maybeArrayOf: "string"
17151
+
},
17152
+
tags: {
17153
+
formats: [
17154
+
"beamer"
17155
+
]
17156
+
},
17157
+
description: "The Beamer color theme options for this presentation, passed to `\\usecolortheme`."
17146
17158
},
17147
17159
{
17148
17160
name: "fonttheme",
@@ -17152,7 +17164,19 @@ var require_yaml_intelligence_resources = __commonJS({
17152
17164
"beamer"
17153
17165
]
17154
17166
},
17155
-
description: "The Beamer font theme for this presentation."
17167
+
description: "The Beamer font theme for this presentation, passed to `\\usefonttheme`."
17168
+
},
17169
+
{
17170
+
name: "fontthemeoptions",
17171
+
schema: {
17172
+
maybeArrayOf: "string"
17173
+
},
17174
+
tags: {
17175
+
formats: [
17176
+
"beamer"
17177
+
]
17178
+
},
17179
+
description: "The Beamer font theme options for this presentation, passed to `\\usefonttheme`."
17156
17180
},
17157
17181
{
17158
17182
name: "innertheme",
@@ -17162,7 +17186,19 @@ var require_yaml_intelligence_resources = __commonJS({
17162
17186
"beamer"
17163
17187
]
17164
17188
},
17165
-
description: "The Beamer inner theme for this presentation."
17189
+
description: "The Beamer inner theme for this presentation, passed to `\\useinnertheme`."
17190
+
},
17191
+
{
17192
+
name: "innerthemeoptions",
17193
+
schema: {
17194
+
maybeArrayOf: "string"
17195
+
},
17196
+
tags: {
17197
+
formats: [
17198
+
"beamer"
17199
+
]
17200
+
},
17201
+
description: "The Beamer inner theme options for this presentation, passed to `\\useinnertheme`."
17166
17202
},
17167
17203
{
17168
17204
name: "outertheme",
@@ -17172,7 +17208,19 @@ var require_yaml_intelligence_resources = __commonJS({
17172
17208
"beamer"
17173
17209
]
17174
17210
},
17175
-
description: "The Beamer outer theme for this presentation."
17211
+
description: "The Beamer outer theme for this presentation, passed to `\\useoutertheme`."
17212
+
},
17213
+
{
17214
+
name: "outerthemeoptions",
17215
+
schema: {
17216
+
maybeArrayOf: "string"
17217
+
},
17218
+
tags: {
17219
+
formats: [
17220
+
"beamer"
17221
+
]
17222
+
},
17223
+
description: "The Beamer outer theme options for this presentation, passed to `\\useoutertheme`."
17176
17224
},
17177
17225
{
17178
17226
name: "themeoptions",
@@ -17184,7 +17232,7 @@ var require_yaml_intelligence_resources = __commonJS({
17184
17232
"beamer"
17185
17233
]
17186
17234
},
17187
-
description: "Options passed to LaTeX Beamer themes."
17235
+
description: "Options passed to LaTeX Beamer themes inside `\\usetheme`."
17188
17236
},
17189
17237
{
17190
17238
name: "section",
@@ -22964,7 +23012,6 @@ var require_yaml_intelligence_resources = __commonJS({
22964
23012
"The light theme name, theme scss file, or a mix of both.",
22965
23013
"The dark theme name, theme scss file, or a mix of both.",
22966
23014
"The dark theme name, theme scss file, or a mix of both.",
22967
-
"Array of rendering names, e.g. <code>[light, dark]</code>",
22968
23015
"Classes to apply to the body of the document.",
22969
23016
"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.",
22970
23017
"Enables inclusion of Pandoc default CSS for this document.",
@@ -24069,7 +24116,11 @@ var require_yaml_intelligence_resources = __commonJS({
24069
24116
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
24070
24117
"Manuscript configuration",
24071
24118
"internal-schema-hack",
24072
-
"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."
24119
+
"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.",
24120
+
"The Beamer color theme options for this presentation, passed to\n<code>\\usecolortheme</code>.",
24121
+
"The Beamer font theme options for this presentation, passed to\n<code>\\usefonttheme</code>.",
24122
+
"The Beamer inner theme options for this presentation, passed to\n<code>\\useinnertheme</code>.",
24123
+
"The Beamer outer theme options for this presentation, passed to\n<code>\\useoutertheme</code>."
24073
24124
],
24074
24125
"schema/external-schemas.yml": [
24075
24126
{
@@ -24298,12 +24349,12 @@ var require_yaml_intelligence_resources = __commonJS({
24298
24349
mermaid: "%%"
24299
24350
},
24300
24351
"handlers/mermaid/schema.yml": {
24301
-
_internalId: 195e3,
24352
+
_internalId: 194592,
24302
24353
type: "object",
24303
24354
description: "be an object",
24304
24355
properties: {
24305
24356
"mermaid-format": {
24306
-
_internalId: 194992,
24357
+
_internalId: 194584,
24307
24358
type: "enum",
24308
24359
enum: [
24309
24360
"png",
@@ -24319,7 +24370,7 @@ var require_yaml_intelligence_resources = __commonJS({
0 commit comments