Skip to content

Commit b6f1245

Browse files
committed
build artifacts
1 parent f6addc2 commit b6f1245

4 files changed

Lines changed: 145 additions & 28 deletions

File tree

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

Lines changed: 48 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13685,13 +13685,14 @@ var require_yaml_intelligence_resources = __commonJS({
1368513685
}
1368613686
},
1368713687
{
13688-
name: "highlight-style",
13688+
name: "syntax-highlighting",
1368913689
tags: {
1369013690
formats: [
1369113691
"$html-all",
1369213692
"docx",
1369313693
"ms",
13694-
"$pdf-all"
13694+
"$pdf-all",
13695+
"typst"
1369513696
]
1369613697
},
1369713698
schema: {
@@ -13720,6 +13721,7 @@ var require_yaml_intelligence_resources = __commonJS({
1372013721
"github",
1372113722
"gruvbox",
1372213723
"haddock",
13724+
"idiomatic",
1372313725
"kate",
1372413726
"monochrome",
1372513727
"monokai",
@@ -13740,7 +13742,38 @@ var require_yaml_intelligence_resources = __commonJS({
1374013742
},
1374113743
description: {
1374213744
short: "Specifies the coloring style to be used in highlighted source code.",
13743-
long: "Specifies the coloring style to be used in highlighted source code.\n\nInstead of a *STYLE* name, a JSON file with extension\n` .theme` may be supplied. This will be parsed as a KDE\nsyntax highlighting theme and (if valid) used as the\nhighlighting style.\n"
13745+
long: "Specifies the coloring style to be used in highlighted source code.\n\nValid values:\n\n- `none`: Disables syntax highlighting for code blocks.\n- `idiomatic`: Uses the format's native syntax highlighter\n (e.g., Typst's built-in highlighting, LaTeX `listings` package,\n or reveal.js highlight.js plugin).\n- A style name (e.g., `pygments`, `tango`, `github`): Uses\n Pandoc's skylighting with the specified theme.\n- A path to a `.theme` file: Uses a custom KDE syntax\n highlighting theme.\n\nFor adaptive light/dark themes, specify an object with `light`\nand `dark` properties pointing to theme files.\n"
13746+
}
13747+
},
13748+
{
13749+
name: "highlight-style",
13750+
hidden: true,
13751+
tags: {
13752+
formats: [
13753+
"$html-all",
13754+
"docx",
13755+
"ms",
13756+
"$pdf-all",
13757+
"typst"
13758+
]
13759+
},
13760+
schema: {
13761+
anyOf: [
13762+
{
13763+
object: {
13764+
closed: true,
13765+
properties: {
13766+
light: "path",
13767+
dark: "path"
13768+
}
13769+
}
13770+
},
13771+
"string"
13772+
]
13773+
},
13774+
description: {
13775+
short: "Deprecated: use `syntax-highlighting` instead.",
13776+
long: "Deprecated: use `syntax-highlighting` instead.\n\nSpecifies the coloring style to be used in highlighted source code.\n"
1374413777
}
1374513778
},
1374613779
{
@@ -13750,7 +13783,8 @@ var require_yaml_intelligence_resources = __commonJS({
1375013783
"$html-all",
1375113784
"docx",
1375213785
"ms",
13753-
"$pdf-all"
13786+
"$pdf-all",
13787+
"typst"
1375413788
]
1375513789
},
1375613790
schema: "path",
@@ -13764,7 +13798,8 @@ var require_yaml_intelligence_resources = __commonJS({
1376413798
"$html-all",
1376513799
"docx",
1376613800
"ms",
13767-
"$pdf-all"
13801+
"$pdf-all",
13802+
"typst"
1376813803
]
1376913804
},
1377013805
schema: {
@@ -23195,7 +23230,11 @@ var require_yaml_intelligence_resources = __commonJS({
2319523230
},
2319623231
{
2319723232
short: "Specifies the coloring style to be used in highlighted source\ncode.",
23198-
long: "Specifies the coloring style to be used in highlighted source\ncode.\nInstead of a <em>STYLE</em> name, a JSON file with extension\n<code>.theme</code> may be supplied. This will be parsed as a KDE syntax\nhighlighting theme and (if valid) used as the highlighting style."
23233+
long: "Specifies the coloring style to be used in highlighted source\ncode.\nValid values:"
23234+
},
23235+
{
23236+
short: "Deprecated: use <code>syntax-highlighting</code> instead.",
23237+
long: "Deprecated: use <code>syntax-highlighting</code> instead.\nSpecifies the coloring style to be used in highlighted source\ncode."
2319923238
},
2320023239
"KDE language syntax definition file (XML)",
2320123240
"KDE language syntax definition files (XML)",
@@ -25266,12 +25305,12 @@ var require_yaml_intelligence_resources = __commonJS({
2526625305
mermaid: "%%"
2526725306
},
2526825307
"handlers/mermaid/schema.yml": {
25269-
_internalId: 220795,
25308+
_internalId: 221789,
2527025309
type: "object",
2527125310
description: "be an object",
2527225311
properties: {
2527325312
"mermaid-format": {
25274-
_internalId: 220787,
25313+
_internalId: 221781,
2527525314
type: "enum",
2527625315
enum: [
2527725316
"png",
@@ -25287,7 +25326,7 @@ var require_yaml_intelligence_resources = __commonJS({
2528725326
exhaustiveCompletions: true
2528825327
},
2528925328
theme: {
25290-
_internalId: 220794,
25329+
_internalId: 221788,
2529125330
type: "anyOf",
2529225331
anyOf: [
2529325332
{

src/resources/editor/tools/yaml/all-schema-definitions.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 48 additions & 9 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: 48 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6657,13 +6657,14 @@
66576657
}
66586658
},
66596659
{
6660-
"name": "highlight-style",
6660+
"name": "syntax-highlighting",
66616661
"tags": {
66626662
"formats": [
66636663
"$html-all",
66646664
"docx",
66656665
"ms",
6666-
"$pdf-all"
6666+
"$pdf-all",
6667+
"typst"
66676668
]
66686669
},
66696670
"schema": {
@@ -6692,6 +6693,7 @@
66926693
"github",
66936694
"gruvbox",
66946695
"haddock",
6696+
"idiomatic",
66956697
"kate",
66966698
"monochrome",
66976699
"monokai",
@@ -6712,7 +6714,38 @@
67126714
},
67136715
"description": {
67146716
"short": "Specifies the coloring style to be used in highlighted source code.",
6715-
"long": "Specifies the coloring style to be used in highlighted source code.\n\nInstead of a *STYLE* name, a JSON file with extension\n` .theme` may be supplied. This will be parsed as a KDE\nsyntax highlighting theme and (if valid) used as the\nhighlighting style.\n"
6717+
"long": "Specifies the coloring style to be used in highlighted source code.\n\nValid values:\n\n- `none`: Disables syntax highlighting for code blocks.\n- `idiomatic`: Uses the format's native syntax highlighter\n (e.g., Typst's built-in highlighting, LaTeX `listings` package,\n or reveal.js highlight.js plugin).\n- A style name (e.g., `pygments`, `tango`, `github`): Uses\n Pandoc's skylighting with the specified theme.\n- A path to a `.theme` file: Uses a custom KDE syntax\n highlighting theme.\n\nFor adaptive light/dark themes, specify an object with `light`\nand `dark` properties pointing to theme files.\n"
6718+
}
6719+
},
6720+
{
6721+
"name": "highlight-style",
6722+
"hidden": true,
6723+
"tags": {
6724+
"formats": [
6725+
"$html-all",
6726+
"docx",
6727+
"ms",
6728+
"$pdf-all",
6729+
"typst"
6730+
]
6731+
},
6732+
"schema": {
6733+
"anyOf": [
6734+
{
6735+
"object": {
6736+
"closed": true,
6737+
"properties": {
6738+
"light": "path",
6739+
"dark": "path"
6740+
}
6741+
}
6742+
},
6743+
"string"
6744+
]
6745+
},
6746+
"description": {
6747+
"short": "Deprecated: use `syntax-highlighting` instead.",
6748+
"long": "Deprecated: use `syntax-highlighting` instead.\n\nSpecifies the coloring style to be used in highlighted source code.\n"
67166749
}
67176750
},
67186751
{
@@ -6722,7 +6755,8 @@
67226755
"$html-all",
67236756
"docx",
67246757
"ms",
6725-
"$pdf-all"
6758+
"$pdf-all",
6759+
"typst"
67266760
]
67276761
},
67286762
"schema": "path",
@@ -6736,7 +6770,8 @@
67366770
"$html-all",
67376771
"docx",
67386772
"ms",
6739-
"$pdf-all"
6773+
"$pdf-all",
6774+
"typst"
67406775
]
67416776
},
67426777
"schema": {
@@ -16167,7 +16202,11 @@
1616716202
},
1616816203
{
1616916204
"short": "Specifies the coloring style to be used in highlighted source\ncode.",
16170-
"long": "Specifies the coloring style to be used in highlighted source\ncode.\nInstead of a <em>STYLE</em> name, a JSON file with extension\n<code>.theme</code> may be supplied. This will be parsed as a KDE syntax\nhighlighting theme and (if valid) used as the highlighting style."
16205+
"long": "Specifies the coloring style to be used in highlighted source\ncode.\nValid values:"
16206+
},
16207+
{
16208+
"short": "Deprecated: use <code>syntax-highlighting</code> instead.",
16209+
"long": "Deprecated: use <code>syntax-highlighting</code> instead.\nSpecifies the coloring style to be used in highlighted source\ncode."
1617116210
},
1617216211
"KDE language syntax definition file (XML)",
1617316212
"KDE language syntax definition files (XML)",
@@ -18238,12 +18277,12 @@
1823818277
"mermaid": "%%"
1823918278
},
1824018279
"handlers/mermaid/schema.yml": {
18241-
"_internalId": 220795,
18280+
"_internalId": 221789,
1824218281
"type": "object",
1824318282
"description": "be an object",
1824418283
"properties": {
1824518284
"mermaid-format": {
18246-
"_internalId": 220787,
18285+
"_internalId": 221781,
1824718286
"type": "enum",
1824818287
"enum": [
1824918288
"png",
@@ -18259,7 +18298,7 @@
1825918298
"exhaustiveCompletions": true
1826018299
},
1826118300
"theme": {
18262-
"_internalId": 220794,
18301+
"_internalId": 221788,
1826318302
"type": "anyOf",
1826418303
"anyOf": [
1826518304
{

0 commit comments

Comments
 (0)