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
+33-5Lines changed: 33 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23769,6 +23769,8 @@ var require_yaml_intelligence_resources = __commonJS({
23769
23769
"Manuscript configuration",
23770
23770
"internal-schema-hack",
23771
23771
"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.",
23772
+
"When defined, run axe-core accessibility tests on the document.",
23773
+
"If set, output axe-core results on console. <code>json</code>:\nproduce structured output; <code>console</code>: print output to\njavascript console; <code>document</code>: produce a visual report of\nviolations in the document itself.",
23772
23774
"Project configuration.",
23773
23775
"Project type (<code>default</code>, <code>website</code>,\n<code>book</code>, or <code>manuscript</code>)",
23774
23776
"Files to render (defaults to all files)",
@@ -24114,7 +24116,8 @@ var require_yaml_intelligence_resources = __commonJS({
24114
24116
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
24115
24117
"Manuscript configuration",
24116
24118
"internal-schema-hack",
24117
-
"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
+
"Date format for the document"
24118
24121
],
24119
24122
"schema/external-schemas.yml": [
24120
24123
{
@@ -24343,12 +24346,12 @@ var require_yaml_intelligence_resources = __commonJS({
24343
24346
mermaid: "%%"
24344
24347
},
24345
24348
"handlers/mermaid/schema.yml": {
24346
-
_internalId: 195861,
24349
+
_internalId: 196444,
24347
24350
type: "object",
24348
24351
description: "be an object",
24349
24352
properties: {
24350
24353
"mermaid-format": {
24351
-
_internalId: 195853,
24354
+
_internalId: 196436,
24352
24355
type: "enum",
24353
24356
enum: [
24354
24357
"png",
@@ -24364,7 +24367,7 @@ var require_yaml_intelligence_resources = __commonJS({
24364
24367
exhaustiveCompletions: true
24365
24368
},
24366
24369
theme: {
24367
-
_internalId: 195860,
24370
+
_internalId: 196443,
24368
24371
type: "anyOf",
24369
24372
anyOf: [
24370
24373
{
@@ -24404,7 +24407,32 @@ var require_yaml_intelligence_resources = __commonJS({
24404
24407
"case-detection": true
24405
24408
},
24406
24409
$id: "handlers/mermaid"
24407
-
}
24410
+
},
24411
+
"schema/document-a11y.yml": [
24412
+
{
24413
+
name: "axe",
24414
+
schema: {
24415
+
anyOf: [
24416
+
"boolean",
24417
+
{
24418
+
object: {
24419
+
properties: {
24420
+
output: {
24421
+
enum: [
24422
+
"json",
24423
+
"console",
24424
+
"document"
24425
+
],
24426
+
description: "If set, output axe-core results on console. `json`: produce structured output; `console`: print output to javascript console; `document`: produce a visual report of violations in the document itself."
24427
+
}
24428
+
}
24429
+
}
24430
+
}
24431
+
]
24432
+
},
24433
+
description: "When defined, run axe-core accessibility tests on the document."
0 commit comments