Skip to content

Commit 1abab5b

Browse files
artifacts
1 parent 0596f3f commit 1abab5b

File tree

3 files changed

+84
-14
lines changed

3 files changed

+84
-14
lines changed

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

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7041,6 +7041,13 @@ var require_yaml_intelligence_resources = __commonJS({
70417041
schema: "string",
70427042
description: "Classes to apply to cell container"
70437043
},
7044+
{
7045+
name: "renderings",
7046+
schema: {
7047+
arrayOf: "string"
7048+
},
7049+
description: "Array of rendering names"
7050+
},
70447051
{
70457052
name: "tags",
70467053
tags: {
@@ -19887,6 +19894,13 @@ var require_yaml_intelligence_resources = __commonJS({
1988719894
},
1988819895
errorMessage: "type key not supported at project type-level. Use `project: type: ...` instead.",
1988919896
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'."
1989019904
}
1989119905
],
1989219906
"schema/schema.yml": [
@@ -23967,7 +23981,9 @@ var require_yaml_intelligence_resources = __commonJS({
2396723981
},
2396823982
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
2396923983
"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."
2397123987
],
2397223988
"schema/external-schemas.yml": [
2397323989
{
@@ -24196,12 +24212,12 @@ var require_yaml_intelligence_resources = __commonJS({
2419624212
mermaid: "%%"
2419724213
},
2419824214
"handlers/mermaid/schema.yml": {
24199-
_internalId: 194269,
24215+
_internalId: 194327,
2420024216
type: "object",
2420124217
description: "be an object",
2420224218
properties: {
2420324219
"mermaid-format": {
24204-
_internalId: 194261,
24220+
_internalId: 194319,
2420524221
type: "enum",
2420624222
enum: [
2420724223
"png",
@@ -24217,7 +24233,7 @@ var require_yaml_intelligence_resources = __commonJS({
2421724233
exhaustiveCompletions: true
2421824234
},
2421924235
theme: {
24220-
_internalId: 194268,
24236+
_internalId: 194326,
2422124237
type: "anyOf",
2422224238
anyOf: [
2422324239
{
@@ -33253,11 +33269,22 @@ var jupyterEngineSchema = defineCached(
3325333269
},
3325433270
"engine-jupyter"
3325533271
);
33272+
var juliaEnginesSchema = defineCached(
33273+
// deno-lint-ignore require-await
33274+
async () => {
33275+
return {
33276+
schema: makeEngineSchema("julia"),
33277+
errorHandlers: []
33278+
};
33279+
},
33280+
"engine-julia"
33281+
);
3325633282
async function getEngineOptionsSchema() {
3325733283
const obj = {
3325833284
markdown: await markdownEngineSchema(),
3325933285
knitr: await knitrEngineSchema(),
33260-
jupyter: await jupyterEngineSchema()
33286+
jupyter: await jupyterEngineSchema(),
33287+
julia: await juliaEnginesSchema()
3326133288
};
3326233289
return obj;
3326333290
}

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

Lines changed: 32 additions & 5 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: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@
1313
"schema": "string",
1414
"description": "Classes to apply to cell container"
1515
},
16+
{
17+
"name": "renderings",
18+
"schema": {
19+
"arrayOf": "string"
20+
},
21+
"description": "Array of rendering names"
22+
},
1623
{
1724
"name": "tags",
1825
"tags": {
@@ -12859,6 +12866,13 @@
1285912866
},
1286012867
"errorMessage": "type key not supported at project type-level. Use `project: type: ...` instead.",
1286112868
"description": "internal-schema-hack"
12869+
},
12870+
{
12871+
"name": "engines",
12872+
"schema": {
12873+
"arrayOf": "string"
12874+
},
12875+
"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'."
1286212876
}
1286312877
],
1286412878
"schema/schema.yml": [
@@ -16939,7 +16953,9 @@
1693916953
},
1694016954
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
1694116955
"Manuscript configuration",
16942-
"internal-schema-hack"
16956+
"internal-schema-hack",
16957+
"Array of rendering names",
16958+
"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’."
1694316959
],
1694416960
"schema/external-schemas.yml": [
1694516961
{
@@ -17168,12 +17184,12 @@
1716817184
"mermaid": "%%"
1716917185
},
1717017186
"handlers/mermaid/schema.yml": {
17171-
"_internalId": 194269,
17187+
"_internalId": 194327,
1717217188
"type": "object",
1717317189
"description": "be an object",
1717417190
"properties": {
1717517191
"mermaid-format": {
17176-
"_internalId": 194261,
17192+
"_internalId": 194319,
1717717193
"type": "enum",
1717817194
"enum": [
1717917195
"png",
@@ -17189,7 +17205,7 @@
1718917205
"exhaustiveCompletions": true
1719017206
},
1719117207
"theme": {
17192-
"_internalId": 194268,
17208+
"_internalId": 194326,
1719317209
"type": "anyOf",
1719417210
"anyOf": [
1719517211
{

0 commit comments

Comments
 (0)