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.8.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
@@ -125,3 +125,4 @@ All changes included in 1.8:
125
125
- ([#12782](https://github.com/quarto-dev/quarto-cli/pull/12782)): fix bug on `safeRemoveDirSync`'s detection of safe directory boundaries.
126
126
- ([#12853](https://github.com/quarto-dev/quarto-cli/issues/12853)): fix replaceAll() escaping issue with embedded notebooks containing `$` in their Markdown.
127
127
- ([#12939](https://github.com/quarto-dev/quarto-cli/pull/12939)): Upgrade `mermaidjs` to 11.6.0.
128
+
- ([#13164](https://github.com/quarto-dev/quarto-cli/pull/13164)): add `julia` to execute schema to allow autocomplete suggestions. (@mcanouil)
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14618,7 +14618,8 @@ var require_yaml_intelligence_resources = __commonJS({
14618
14618
string: {
14619
14619
completions: [
14620
14620
"jupyter",
14621
-
"knitr"
14621
+
"knitr",
14622
+
"julia"
14622
14623
]
14623
14624
}
14624
14625
},
@@ -22610,6 +22611,7 @@ var require_yaml_intelligence_resources = __commonJS({
22610
22611
"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.",
22611
22612
"The path to the font file. This can be a local path or a URL.",
22612
22613
"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system.",
22614
+
"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml",
22613
22615
"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 (unified) brand definition, or an object with light\nand dark brand paths or definitions.",
22614
22616
"The path to a light brand file or an inline light brand\ndefinition.",
22615
22617
"The path to a dark brand file or an inline dark brand definition.",
@@ -24011,7 +24013,7 @@ var require_yaml_intelligence_resources = __commonJS({
24011
24013
"HTML library (JS/CSS/etc.) directory",
24012
24014
"Additional file resources to be copied to output directory",
24013
24015
"Additional file resources to be copied to output directory",
24014
-
"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.",
24016
+
"Path to brand.yml or object with light and dark paths to\nbrand.yml",
24015
24017
"Options for <code>quarto preview</code>",
24016
24018
"Scripts to run as a pre-render step",
24017
24019
"Scripts to run as a post-render step",
@@ -24361,7 +24363,7 @@ var require_yaml_intelligence_resources = __commonJS({
24361
24363
"HTML library (JS/CSS/etc.) directory",
24362
24364
"Additional file resources to be copied to output directory",
24363
24365
"Additional file resources to be copied to output directory",
24364
-
"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.",
24366
+
"Path to brand.yml or object with light and dark paths to\nbrand.yml",
24365
24367
"Options for <code>quarto preview</code>",
24366
24368
"Scripts to run as a pre-render step",
24367
24369
"Scripts to run as a post-render step",
@@ -24696,8 +24698,7 @@ var require_yaml_intelligence_resources = __commonJS({
24696
24698
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
24697
24699
"Manuscript configuration",
24698
24700
"internal-schema-hack",
24699
-
"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.",
24700
-
"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"
24701
+
"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."
24701
24702
],
24702
24703
"schema/external-schemas.yml": [
24703
24704
{
@@ -24926,12 +24927,12 @@ var require_yaml_intelligence_resources = __commonJS({
24926
24927
mermaid: "%%"
24927
24928
},
24928
24929
"handlers/mermaid/schema.yml": {
24929
-
_internalId: 197527,
24930
+
_internalId: 197539,
24930
24931
type: "object",
24931
24932
description: "be an object",
24932
24933
properties: {
24933
24934
"mermaid-format": {
24934
-
_internalId: 197519,
24935
+
_internalId: 197531,
24935
24936
type: "enum",
24936
24937
enum: [
24937
24938
"png",
@@ -24947,7 +24948,7 @@ var require_yaml_intelligence_resources = __commonJS({
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -7590,7 +7590,8 @@
7590
7590
"string": {
7591
7591
"completions": [
7592
7592
"jupyter",
7593
-
"knitr"
7593
+
"knitr",
7594
+
"julia"
7594
7595
]
7595
7596
}
7596
7597
},
@@ -15582,6 +15583,7 @@
15582
15583
"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.",
15583
15584
"The path to the font file. This can be a local path or a URL.",
15584
15585
"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system.",
15586
+
"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml",
15585
15587
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions.",
15586
15588
"The path to a light brand file or an inline light brand\ndefinition.",
15587
15589
"The path to a dark brand file or an inline dark brand definition.",
@@ -16983,7 +16985,7 @@
16983
16985
"HTML library (JS/CSS/etc.) directory",
16984
16986
"Additional file resources to be copied to output directory",
16985
16987
"Additional file resources to be copied to output directory",
16986
-
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.",
16988
+
"Path to brand.yml or object with light and dark paths to\nbrand.yml",
16987
16989
"Options for <code>quarto preview</code>",
16988
16990
"Scripts to run as a pre-render step",
16989
16991
"Scripts to run as a post-render step",
@@ -17333,7 +17335,7 @@
17333
17335
"HTML library (JS/CSS/etc.) directory",
17334
17336
"Additional file resources to be copied to output directory",
17335
17337
"Additional file resources to be copied to output directory",
17336
-
"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.",
17338
+
"Path to brand.yml or object with light and dark paths to\nbrand.yml",
17337
17339
"Options for <code>quarto preview</code>",
17338
17340
"Scripts to run as a pre-render step",
17339
17341
"Scripts to run as a post-render step",
@@ -17668,8 +17670,7 @@
17668
17670
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
17669
17671
"Manuscript configuration",
17670
17672
"internal-schema-hack",
17671
-
"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’.",
17672
-
"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"
17673
+
"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’."
0 commit comments