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
+18-6Lines changed: 18 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -8220,9 +8220,18 @@ var require_yaml_intelligence_resources = __commonJS({
8220
8220
tags: {
8221
8221
engine: "knitr"
8222
8222
},
8223
-
schema: "boolean",
8223
+
schema: {
8224
+
enum: [
8225
+
true,
8226
+
false,
8227
+
"NA"
8228
+
]
8229
+
},
8224
8230
default: true,
8225
-
description: "Include messages in rendered output."
8231
+
description: {
8232
+
short: "Include messages in rendered output.",
8233
+
long: "Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"
8234
+
}
8226
8235
},
8227
8236
{
8228
8237
name: "results",
@@ -22035,7 +22044,10 @@ var require_yaml_intelligence_resources = __commonJS({
22035
22044
short: "Location of output relative to the code that generated it\n(<code>default</code>, <code>fragment</code>, <code>slide</code>,\n<code>column</code>, or <code>column-location</code>)",
22036
22045
long: "Location of output relative to the code that generated it. The\npossible values are as follows:"
22037
22046
},
22038
-
"Include messages in rendered output.",
22047
+
{
22048
+
short: "Include messages in rendered output.",
22049
+
long: "Include messages in rendered output. Possible values are\n<code>true</code>, <code>false</code>, or <code>NA</code>. If\n<code>true</code>, messages are included in the output. If\n<code>false</code>, messages are not included. If <code>NA</code>,\nmessages are not included in output but shown in the knitr log to\nconsole."
22050
+
},
22039
22051
{
22040
22052
short: "How to display text results",
22041
22053
long: "How to display text results. Note that this option only applies to\nnormal text output (not warnings, messages, or errors). The possible\nvalues are as follows:"
@@ -24134,12 +24146,12 @@ var require_yaml_intelligence_resources = __commonJS({
24134
24146
mermaid: "%%"
24135
24147
},
24136
24148
"handlers/mermaid/schema.yml": {
24137
-
_internalId: 193399,
24149
+
_internalId: 193475,
24138
24150
type: "object",
24139
24151
description: "be an object",
24140
24152
properties: {
24141
24153
"mermaid-format": {
24142
-
_internalId: 193391,
24154
+
_internalId: 193467,
24143
24155
type: "enum",
24144
24156
enum: [
24145
24157
"png",
@@ -24155,7 +24167,7 @@ var require_yaml_intelligence_resources = __commonJS({
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+18-6Lines changed: 18 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1192,9 +1192,18 @@
1192
1192
"tags": {
1193
1193
"engine": "knitr"
1194
1194
},
1195
-
"schema": "boolean",
1195
+
"schema": {
1196
+
"enum": [
1197
+
true,
1198
+
false,
1199
+
"NA"
1200
+
]
1201
+
},
1196
1202
"default": true,
1197
-
"description": "Include messages in rendered output."
1203
+
"description": {
1204
+
"short": "Include messages in rendered output.",
1205
+
"long": "Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"
1206
+
}
1198
1207
},
1199
1208
{
1200
1209
"name": "results",
@@ -15007,7 +15016,10 @@
15007
15016
"short": "Location of output relative to the code that generated it\n(<code>default</code>, <code>fragment</code>, <code>slide</code>,\n<code>column</code>, or <code>column-location</code>)",
15008
15017
"long": "Location of output relative to the code that generated it. The\npossible values are as follows:"
15009
15018
},
15010
-
"Include messages in rendered output.",
15019
+
{
15020
+
"short": "Include messages in rendered output.",
15021
+
"long": "Include messages in rendered output. Possible values are\n<code>true</code>, <code>false</code>, or <code>NA</code>. If\n<code>true</code>, messages are included in the output. If\n<code>false</code>, messages are not included. If <code>NA</code>,\nmessages are not included in output but shown in the knitr log to\nconsole."
15022
+
},
15011
15023
{
15012
15024
"short": "How to display text results",
15013
15025
"long": "How to display text results. Note that this option only applies to\nnormal text output (not warnings, messages, or errors). The possible\nvalues are as follows:"
0 commit comments