Skip to content

Commit 65e8029

Browse files
committed
Build artifacts
1 parent 23bd7aa commit 65e8029

File tree

4 files changed

+82
-16
lines changed

4 files changed

+82
-16
lines changed

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

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17215,6 +17215,24 @@ var require_yaml_intelligence_resources = __commonJS({
1721517215
long: "Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"
1721617216
}
1721717217
},
17218+
{
17219+
name: "page-numbering",
17220+
schema: {
17221+
anyOf: [
17222+
"boolean",
17223+
"string"
17224+
]
17225+
},
17226+
tags: {
17227+
formats: [
17228+
"typst"
17229+
]
17230+
},
17231+
description: {
17232+
short: "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n",
17233+
long: "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"
17234+
}
17235+
},
1721817236
{
1721917237
name: "pagenumbering",
1722017238
schema: {
@@ -21908,7 +21926,7 @@ var require_yaml_intelligence_resources = __commonJS({
2190821926
"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed.",
2190921927
{
2191021928
short: "The date format to use when displaying dates (e.g. d-M-yyy).",
21911-
long: 'The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href="https://quarto.org/docs/reference/dates.html">here</a>.'
21929+
long: 'The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href="https://deno.land/std@0.125.0/datetime">here</a>.'
2191221930
},
2191321931
{
2191421932
short: "The maximum length (in characters) of the description displayed in\nthe listing.",
@@ -24698,7 +24716,11 @@ var require_yaml_intelligence_resources = __commonJS({
2469824716
"Disambiguating year suffix in author-date styles (e.g.&nbsp;\u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
2469924717
"Manuscript configuration",
2470024718
"internal-schema-hack",
24701-
"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."
24719+
"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.",
24720+
{
24721+
short: "Schema to use for numbering pages, e.g.&nbsp;<code>1</code> or\n<code>i</code>, or <code>false</code> to omit page numbering.",
24722+
long: 'Schema to use for numbering pages, e.g.&nbsp;<code>1</code> or\n<code>i</code>, or <code>false</code> to omit page numbering.\nSee <a href="https://typst.app/docs/reference/model/numbering/">Typst\nNumbering</a> for additional information.'
24723+
}
2470224724
],
2470324725
"schema/external-schemas.yml": [
2470424726
{
@@ -24927,12 +24949,12 @@ var require_yaml_intelligence_resources = __commonJS({
2492724949
mermaid: "%%"
2492824950
},
2492924951
"handlers/mermaid/schema.yml": {
24930-
_internalId: 197474,
24952+
_internalId: 197484,
2493124953
type: "object",
2493224954
description: "be an object",
2493324955
properties: {
2493424956
"mermaid-format": {
24935-
_internalId: 197466,
24957+
_internalId: 197476,
2493624958
type: "enum",
2493724959
enum: [
2493824960
"png",
@@ -24948,7 +24970,7 @@ var require_yaml_intelligence_resources = __commonJS({
2494824970
exhaustiveCompletions: true
2494924971
},
2495024972
theme: {
24951-
_internalId: 197473,
24973+
_internalId: 197483,
2495224974
type: "anyOf",
2495324975
anyOf: [
2495424976
{

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: 27 additions & 5 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: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10187,6 +10187,24 @@
1018710187
"long": "Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"
1018810188
}
1018910189
},
10190+
{
10191+
"name": "page-numbering",
10192+
"schema": {
10193+
"anyOf": [
10194+
"boolean",
10195+
"string"
10196+
]
10197+
},
10198+
"tags": {
10199+
"formats": [
10200+
"typst"
10201+
]
10202+
},
10203+
"description": {
10204+
"short": "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n",
10205+
"long": "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"
10206+
}
10207+
},
1019010208
{
1019110209
"name": "pagenumbering",
1019210210
"schema": {
@@ -14880,7 +14898,7 @@
1488014898
"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed.",
1488114899
{
1488214900
"short": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy).",
14883-
"long": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href=\"https://quarto.org/docs/reference/dates.html\">here</a>."
14901+
"long": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href=\"https://deno.land/std@0.125.0/datetime\">here</a>."
1488414902
},
1488514903
{
1488614904
"short": "The maximum length (in characters) of the description displayed in\nthe listing.",
@@ -17670,7 +17688,11 @@
1767017688
"Disambiguating year suffix in author-date styles (e.g.&nbsp;“a” in “Doe,\n1999a”).",
1767117689
"Manuscript configuration",
1767217690
"internal-schema-hack",
17673-
"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’."
17691+
"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’.",
17692+
{
17693+
"short": "Schema to use for numbering pages, e.g.&nbsp;<code>1</code> or\n<code>i</code>, or <code>false</code> to omit page numbering.",
17694+
"long": "Schema to use for numbering pages, e.g.&nbsp;<code>1</code> or\n<code>i</code>, or <code>false</code> to omit page numbering.\nSee <a href=\"https://typst.app/docs/reference/model/numbering/\">Typst\nNumbering</a> for additional information."
17695+
}
1767417696
],
1767517697
"schema/external-schemas.yml": [
1767617698
{
@@ -17899,12 +17921,12 @@
1789917921
"mermaid": "%%"
1790017922
},
1790117923
"handlers/mermaid/schema.yml": {
17902-
"_internalId": 197474,
17924+
"_internalId": 197484,
1790317925
"type": "object",
1790417926
"description": "be an object",
1790517927
"properties": {
1790617928
"mermaid-format": {
17907-
"_internalId": 197466,
17929+
"_internalId": 197476,
1790817930
"type": "enum",
1790917931
"enum": [
1791017932
"png",
@@ -17920,7 +17942,7 @@
1792017942
"exhaustiveCompletions": true
1792117943
},
1792217944
"theme": {
17923-
"_internalId": 197473,
17945+
"_internalId": 197483,
1792417946
"type": "anyOf",
1792517947
"anyOf": [
1792617948
{

0 commit comments

Comments
 (0)