Skip to content

Commit 3ac3373

Browse files
committed
fix: typo in schema
1 parent 75ee705 commit 3ac3373

File tree

4 files changed

+64
-18
lines changed

4 files changed

+64
-18
lines changed

src/resources/editor/tools/vs-code.mjs

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16582,7 +16582,7 @@ var require_yaml_intelligence_resources = __commonJS({
1658216582
},
1658316583
{
1658416584
name: "number-offset",
16585-
ags: {
16585+
tags: {
1658616586
formats: [
1658716587
"$html-all"
1658816588
]
@@ -19892,6 +19892,13 @@ var require_yaml_intelligence_resources = __commonJS({
1989219892
},
1989319893
errorMessage: "type key not supported at project type-level. Use `project: type: ...` instead.",
1989419894
description: "internal-schema-hack"
19895+
},
19896+
{
19897+
name: "engines",
19898+
schema: {
19899+
arrayOf: "string"
19900+
},
19901+
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'."
1989519902
}
1989619903
],
1989719904
"schema/schema.yml": [
@@ -23972,7 +23979,8 @@ var require_yaml_intelligence_resources = __commonJS({
2397223979
},
2397323980
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
2397423981
"Manuscript configuration",
23975-
"internal-schema-hack"
23982+
"internal-schema-hack",
23983+
"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."
2397623984
],
2397723985
"schema/external-schemas.yml": [
2397823986
{
@@ -24201,12 +24209,12 @@ var require_yaml_intelligence_resources = __commonJS({
2420124209
mermaid: "%%"
2420224210
},
2420324211
"handlers/mermaid/schema.yml": {
24204-
_internalId: 194269,
24212+
_internalId: 194322,
2420524213
type: "object",
2420624214
description: "be an object",
2420724215
properties: {
2420824216
"mermaid-format": {
24209-
_internalId: 194261,
24217+
_internalId: 194314,
2421024218
type: "enum",
2421124219
enum: [
2421224220
"png",
@@ -24222,7 +24230,7 @@ var require_yaml_intelligence_resources = __commonJS({
2422224230
exhaustiveCompletions: true
2422324231
},
2422424232
theme: {
24225-
_internalId: 194268,
24233+
_internalId: 194321,
2422624234
type: "anyOf",
2422724235
anyOf: [
2422824236
{
@@ -33258,11 +33266,22 @@ var jupyterEngineSchema = defineCached(
3325833266
},
3325933267
"engine-jupyter"
3326033268
);
33269+
var juliaEnginesSchema = defineCached(
33270+
// deno-lint-ignore require-await
33271+
async () => {
33272+
return {
33273+
schema: makeEngineSchema("julia"),
33274+
errorHandlers: []
33275+
};
33276+
},
33277+
"engine-julia"
33278+
);
3326133279
async function getEngineOptionsSchema() {
3326233280
const obj = {
3326333281
markdown: await markdownEngineSchema(),
3326433282
knitr: await knitrEngineSchema(),
33265-
jupyter: await jupyterEngineSchema()
33283+
jupyter: await jupyterEngineSchema(),
33284+
julia: await juliaEnginesSchema()
3326633285
};
3326733286
return obj;
3326833287
}

src/resources/editor/tools/yaml/web-worker.js

Lines changed: 25 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/resources/editor/tools/yaml/yaml-intelligence-resources.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9554,7 +9554,7 @@
95549554
},
95559555
{
95569556
"name": "number-offset",
9557-
"ags": {
9557+
"tags": {
95589558
"formats": [
95599559
"$html-all"
95609560
]
@@ -12864,6 +12864,13 @@
1286412864
},
1286512865
"errorMessage": "type key not supported at project type-level. Use `project: type: ...` instead.",
1286612866
"description": "internal-schema-hack"
12867+
},
12868+
{
12869+
"name": "engines",
12870+
"schema": {
12871+
"arrayOf": "string"
12872+
},
12873+
"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'."
1286712874
}
1286812875
],
1286912876
"schema/schema.yml": [
@@ -16944,7 +16951,8 @@
1694416951
},
1694516952
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
1694616953
"Manuscript configuration",
16947-
"internal-schema-hack"
16954+
"internal-schema-hack",
16955+
"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’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."
1694816956
],
1694916957
"schema/external-schemas.yml": [
1695016958
{
@@ -17173,12 +17181,12 @@
1717317181
"mermaid": "%%"
1717417182
},
1717517183
"handlers/mermaid/schema.yml": {
17176-
"_internalId": 194269,
17184+
"_internalId": 194322,
1717717185
"type": "object",
1717817186
"description": "be an object",
1717917187
"properties": {
1718017188
"mermaid-format": {
17181-
"_internalId": 194261,
17189+
"_internalId": 194314,
1718217190
"type": "enum",
1718317191
"enum": [
1718417192
"png",
@@ -17194,7 +17202,7 @@
1719417202
"exhaustiveCompletions": true
1719517203
},
1719617204
"theme": {
17197-
"_internalId": 194268,
17205+
"_internalId": 194321,
1719817206
"type": "anyOf",
1719917207
"anyOf": [
1720017208
{

src/resources/schema/document-numbering.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
description: The numbering depth for sections. (Use `number-depth` instead).
3535

3636
- name: number-offset
37-
ags:
37+
tags:
3838
formats: [$html-all]
3939
schema:
4040
maybeArrayOf: number

0 commit comments

Comments
 (0)