Skip to content

Commit 49fa0b9

Browse files
committed
regen
regen
1 parent 1d00926 commit 49fa0b9

File tree

3 files changed

+174
-12
lines changed

3 files changed

+174
-12
lines changed

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

Lines changed: 58 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9780,6 +9780,8 @@ var require_yaml_intelligence_resources = __commonJS({
97809780
properties: {
97819781
"toc-title-document": "string",
97829782
"toc-title-website": "string",
9783+
"related-formats-title": "string",
9784+
"related-notebooks-title": "string",
97839785
"callout-tip-caption": "string",
97849786
"callout-note-caption": "string",
97859787
"callout-warning-caption": "string",
@@ -13894,6 +13896,49 @@ var require_yaml_intelligence_resources = __commonJS({
1389413896
short: "A regular expression that can be used to determine whether a link is an internal link.",
1389513897
long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
1389613898
}
13899+
},
13900+
{
13901+
name: "format-links",
13902+
tags: {
13903+
formats: [
13904+
"$html-doc"
13905+
]
13906+
},
13907+
schema: {
13908+
anyOf: [
13909+
"boolean",
13910+
{
13911+
arrayOf: "string"
13912+
}
13913+
]
13914+
},
13915+
description: {
13916+
short: "Controls whether links to other rendered formats are displayed in HTML output.",
13917+
long: "Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"
13918+
}
13919+
},
13920+
{
13921+
name: "notebook-links",
13922+
tags: {
13923+
formats: [
13924+
"$html-doc"
13925+
]
13926+
},
13927+
schema: {
13928+
anyOf: [
13929+
"boolean",
13930+
{
13931+
enum: [
13932+
"inline",
13933+
"global"
13934+
]
13935+
}
13936+
]
13937+
},
13938+
description: {
13939+
short: "Controls the display of links to notebooks that provided embedded content or are created from documents.",
13940+
long: "Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"
13941+
}
1389713942
}
1389813943
],
1389913944
"schema/document-listing.yml": [
@@ -18894,6 +18939,14 @@ var require_yaml_intelligence_resources = __commonJS({
1889418939
short: "A regular expression that can be used to determine whether a link is\nan internal link.",
1889518940
long: "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith http://www.quarto.org as internal links (and others will be\nconsidered external):"
1889618941
},
18942+
{
18943+
short: "Controls whether links to other rendered formats are displayed in\nHTML output.",
18944+
long: "Controls whether links to other rendered formats are displayed in\nHTML output.\nPass <code>false</code> to disable the display of format lengths or\npass a list of format names for which you\u2019d like links to be shown."
18945+
},
18946+
{
18947+
short: "Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.",
18948+
long: "Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.\nSpecify <code>false</code> to disable linking to source Notebooks.\nSpecify <code>inline</code> to show links to source notebooks beneath\nthe content they provide. Specify <code>global</code> to show a set of\nglobal links to source notebooks."
18949+
},
1889718950
"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data.",
1889818951
"List of keywords to be included in the document metadata.",
1889918952
"The document subject",
@@ -20041,7 +20094,8 @@ var require_yaml_intelligence_resources = __commonJS({
2004120094
"handlers/languages.yml": [
2004220095
"mermaid",
2004320096
"include",
20044-
"dot"
20097+
"dot",
20098+
"embed"
2004520099
],
2004620100
"handlers/lang-comment-chars.yml": {
2004720101
r: "#",
@@ -20098,12 +20152,12 @@ var require_yaml_intelligence_resources = __commonJS({
2009820152
mermaid: "%%"
2009920153
},
2010020154
"handlers/mermaid/schema.yml": {
20101-
_internalId: 133985,
20155+
_internalId: 135189,
2010220156
type: "object",
2010320157
description: "be an object",
2010420158
properties: {
2010520159
"mermaid-format": {
20106-
_internalId: 133977,
20160+
_internalId: 135181,
2010720161
type: "enum",
2010820162
enum: [
2010920163
"png",
@@ -20119,7 +20173,7 @@ var require_yaml_intelligence_resources = __commonJS({
2011920173
exhaustiveCompletions: true
2012020174
},
2012120175
theme: {
20122-
_internalId: 133984,
20176+
_internalId: 135188,
2012320177
type: "anyOf",
2012420178
anyOf: [
2012520179
{

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

Lines changed: 58 additions & 4 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: 58 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2756,6 +2756,8 @@
27562756
"properties": {
27572757
"toc-title-document": "string",
27582758
"toc-title-website": "string",
2759+
"related-formats-title": "string",
2760+
"related-notebooks-title": "string",
27592761
"callout-tip-caption": "string",
27602762
"callout-note-caption": "string",
27612763
"callout-warning-caption": "string",
@@ -6870,6 +6872,49 @@
68706872
"short": "A regular expression that can be used to determine whether a link is an internal link.",
68716873
"long": "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"
68726874
}
6875+
},
6876+
{
6877+
"name": "format-links",
6878+
"tags": {
6879+
"formats": [
6880+
"$html-doc"
6881+
]
6882+
},
6883+
"schema": {
6884+
"anyOf": [
6885+
"boolean",
6886+
{
6887+
"arrayOf": "string"
6888+
}
6889+
]
6890+
},
6891+
"description": {
6892+
"short": "Controls whether links to other rendered formats are displayed in HTML output.",
6893+
"long": "Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"
6894+
}
6895+
},
6896+
{
6897+
"name": "notebook-links",
6898+
"tags": {
6899+
"formats": [
6900+
"$html-doc"
6901+
]
6902+
},
6903+
"schema": {
6904+
"anyOf": [
6905+
"boolean",
6906+
{
6907+
"enum": [
6908+
"inline",
6909+
"global"
6910+
]
6911+
}
6912+
]
6913+
},
6914+
"description": {
6915+
"short": "Controls the display of links to notebooks that provided embedded content or are created from documents.",
6916+
"long": "Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"
6917+
}
68736918
}
68746919
],
68756920
"schema/document-listing.yml": [
@@ -11870,6 +11915,14 @@
1187011915
"short": "A regular expression that can be used to determine whether a link is\nan internal link.",
1187111916
"long": "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith http://www.quarto.org as internal links (and others will be\nconsidered external):"
1187211917
},
11918+
{
11919+
"short": "Controls whether links to other rendered formats are displayed in\nHTML output.",
11920+
"long": "Controls whether links to other rendered formats are displayed in\nHTML output.\nPass <code>false</code> to disable the display of format lengths or\npass a list of format names for which you’d like links to be shown."
11921+
},
11922+
{
11923+
"short": "Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.",
11924+
"long": "Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.\nSpecify <code>false</code> to disable linking to source Notebooks.\nSpecify <code>inline</code> to show links to source notebooks beneath\nthe content they provide. Specify <code>global</code> to show a set of\nglobal links to source notebooks."
11925+
},
1187311926
"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data.",
1187411927
"List of keywords to be included in the document metadata.",
1187511928
"The document subject",
@@ -13017,7 +13070,8 @@
1301713070
"handlers/languages.yml": [
1301813071
"mermaid",
1301913072
"include",
13020-
"dot"
13073+
"dot",
13074+
"embed"
1302113075
],
1302213076
"handlers/lang-comment-chars.yml": {
1302313077
"r": "#",
@@ -13074,12 +13128,12 @@
1307413128
"mermaid": "%%"
1307513129
},
1307613130
"handlers/mermaid/schema.yml": {
13077-
"_internalId": 133985,
13131+
"_internalId": 135189,
1307813132
"type": "object",
1307913133
"description": "be an object",
1308013134
"properties": {
1308113135
"mermaid-format": {
13082-
"_internalId": 133977,
13136+
"_internalId": 135181,
1308313137
"type": "enum",
1308413138
"enum": [
1308513139
"png",
@@ -13095,7 +13149,7 @@
1309513149
"exhaustiveCompletions": true
1309613150
},
1309713151
"theme": {
13098-
"_internalId": 133984,
13152+
"_internalId": 135188,
1309913153
"type": "anyOf",
1310013154
"anyOf": [
1310113155
{

0 commit comments

Comments
 (0)