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
+40-6Lines changed: 40 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11707,6 +11707,13 @@ var require_yaml_intelligence_resources = __commonJS({
11707
11707
default: true
11708
11708
}
11709
11709
},
11710
+
skip: {
11711
+
description: "Skip test unconditionally (true = skip with default message, string = skip with custom message)",
11712
+
anyOf: [
11713
+
"boolean",
11714
+
"string"
11715
+
]
11716
+
},
11710
11717
os: {
11711
11718
description: "Run tests ONLY on these platforms (whitelist)",
11712
11719
anyOf: [
@@ -16036,6 +16043,21 @@ var require_yaml_intelligence_resources = __commonJS({
16036
16043
},
16037
16044
description: "YAML file containing custom language translations"
16038
16045
},
16046
+
{
16047
+
name: "shorthands",
16048
+
tags: {
16049
+
formats: [
16050
+
"pdf",
16051
+
"beamer"
16052
+
]
16053
+
},
16054
+
schema: "boolean",
16055
+
default: false,
16056
+
description: {
16057
+
short: "Enable babel language-specific shorthands in LaTeX output.",
16058
+
long: "Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"
16059
+
}
16060
+
},
16039
16061
{
16040
16062
name: "dir",
16041
16063
schema: {
@@ -21365,6 +21387,12 @@ var require_yaml_intelligence_resources = __commonJS({
21365
21387
"asciidoc",
21366
21388
"asciidoc_legacy",
21367
21389
"asciidoctor",
21390
+
"bbcode",
21391
+
"bbcode_fluxbb",
21392
+
"bbcode_hubzilla",
21393
+
"bbcode_phpbb",
21394
+
"bbcode_steam",
21395
+
"bbcode_xenforo",
21368
21396
"beamer",
21369
21397
"biblatex",
21370
21398
"bibtex",
@@ -21426,6 +21454,8 @@ var require_yaml_intelligence_resources = __commonJS({
21426
21454
"texinfo",
21427
21455
"textile",
21428
21456
"typst",
21457
+
"vimdoc",
21458
+
"xml",
21429
21459
"xwiki",
21430
21460
"zimwiki"
21431
21461
],
@@ -24850,7 +24880,11 @@ var require_yaml_intelligence_resources = __commonJS({
24850
24880
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
24851
24881
"Manuscript configuration",
24852
24882
"internal-schema-hack",
24853
-
"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."
24883
+
"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.",
24884
+
{
24885
+
short: "Enable babel language-specific shorthands in LaTeX output.",
24886
+
long: 'Enable babel language-specific shorthands in LaTeX output. When\n<code>true</code>, babel\u2019s language shortcuts are enabled (e.g., French\n<code><<</code>/<code>>></code> for guillemets, German\n<code>"</code> shortcuts, proper spacing around French punctuation).\nDefault is <code>false</code> because language shorthands can\ninterfere with code blocks and other content. Only enable if you need\nspecific typographic features for your language.'
24887
+
}
24854
24888
],
24855
24889
"schema/external-schemas.yml": [
24856
24890
{
@@ -25079,12 +25113,12 @@ var require_yaml_intelligence_resources = __commonJS({
25079
25113
mermaid: "%%"
25080
25114
},
25081
25115
"handlers/mermaid/schema.yml": {
25082
-
_internalId: 197583,
25116
+
_internalId: 197592,
25083
25117
type: "object",
25084
25118
description: "be an object",
25085
25119
properties: {
25086
25120
"mermaid-format": {
25087
-
_internalId: 197575,
25121
+
_internalId: 197584,
25088
25122
type: "enum",
25089
25123
enum: [
25090
25124
"png",
@@ -25100,7 +25134,7 @@ var require_yaml_intelligence_resources = __commonJS({
25100
25134
exhaustiveCompletions: true
25101
25135
},
25102
25136
theme: {
25103
-
_internalId: 197582,
25137
+
_internalId: 197591,
25104
25138
type: "anyOf",
25105
25139
anyOf: [
25106
25140
{
@@ -34405,7 +34439,7 @@ function parseShortcode(shortCodeCapture) {
34405
34439
}
34406
34440
34407
34441
// ../break-quarto-md.ts
34408
-
async function breakQuartoMd(src, validate2 = false, lenient = false) {
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+38-4Lines changed: 38 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4679,6 +4679,13 @@
4679
4679
"default": true
4680
4680
}
4681
4681
},
4682
+
"skip": {
4683
+
"description": "Skip test unconditionally (true = skip with default message, string = skip with custom message)",
4684
+
"anyOf": [
4685
+
"boolean",
4686
+
"string"
4687
+
]
4688
+
},
4682
4689
"os": {
4683
4690
"description": "Run tests ONLY on these platforms (whitelist)",
4684
4691
"anyOf": [
@@ -9008,6 +9015,21 @@
9008
9015
},
9009
9016
"description": "YAML file containing custom language translations"
9010
9017
},
9018
+
{
9019
+
"name": "shorthands",
9020
+
"tags": {
9021
+
"formats": [
9022
+
"pdf",
9023
+
"beamer"
9024
+
]
9025
+
},
9026
+
"schema": "boolean",
9027
+
"default": false,
9028
+
"description": {
9029
+
"short": "Enable babel language-specific shorthands in LaTeX output.",
9030
+
"long": "Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"
9031
+
}
9032
+
},
9011
9033
{
9012
9034
"name": "dir",
9013
9035
"schema": {
@@ -14337,6 +14359,12 @@
14337
14359
"asciidoc",
14338
14360
"asciidoc_legacy",
14339
14361
"asciidoctor",
14362
+
"bbcode",
14363
+
"bbcode_fluxbb",
14364
+
"bbcode_hubzilla",
14365
+
"bbcode_phpbb",
14366
+
"bbcode_steam",
14367
+
"bbcode_xenforo",
14340
14368
"beamer",
14341
14369
"biblatex",
14342
14370
"bibtex",
@@ -14398,6 +14426,8 @@
14398
14426
"texinfo",
14399
14427
"textile",
14400
14428
"typst",
14429
+
"vimdoc",
14430
+
"xml",
14401
14431
"xwiki",
14402
14432
"zimwiki"
14403
14433
],
@@ -17822,7 +17852,11 @@
17822
17852
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
17823
17853
"Manuscript configuration",
17824
17854
"internal-schema-hack",
17825
-
"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’."
17855
+
"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’.",
17856
+
{
17857
+
"short": "Enable babel language-specific shorthands in LaTeX output.",
17858
+
"long": "Enable babel language-specific shorthands in LaTeX output. When\n<code>true</code>, babel’s language shortcuts are enabled (e.g., French\n<code><<</code>/<code>>></code> for guillemets, German\n<code>\"</code> shortcuts, proper spacing around French punctuation).\nDefault is <code>false</code> because language shorthands can\ninterfere with code blocks and other content. Only enable if you need\nspecific typographic features for your language."
0 commit comments