Skip to content

Commit 1f5904f

Browse files
artifacts
1 parent e94aeee commit 1f5904f

File tree

4 files changed

+142
-73
lines changed

4 files changed

+142
-73
lines changed

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

Lines changed: 47 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13530,7 +13530,8 @@ var require_yaml_intelligence_resources = __commonJS({
1353013530
schema: "string",
1353113531
tags: {
1353213532
formats: [
13533-
"$pdf-all"
13533+
"$pdf-all",
13534+
"typst"
1353413535
]
1353513536
},
1353613537
description: "The contents of an acknowledgments footnote after the document title."
@@ -13859,12 +13860,13 @@ var require_yaml_intelligence_resources = __commonJS({
1385913860
formats: [
1386013861
"$html-doc",
1386113862
"context",
13862-
"$pdf-all"
13863+
"$pdf-all",
13864+
"typst"
1386313865
]
1386413866
},
1386513867
description: {
1386613868
short: "Sets the color of hyperlinks in the document.",
13867-
long: "For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n"
13869+
long: "For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n\nFor Typst output, sets the color of internal hyperlinks using Typst color syntax.\n"
1386813870
}
1386913871
},
1387013872
{
@@ -13898,25 +13900,27 @@ var require_yaml_intelligence_resources = __commonJS({
1389813900
schema: "string",
1389913901
tags: {
1390013902
formats: [
13901-
"$pdf-all"
13903+
"$pdf-all",
13904+
"typst"
1390213905
]
1390313906
},
1390413907
description: {
13905-
short: "The color used for external links using color options allowed by `xcolor`",
13906-
long: "The color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"
13908+
short: "The color used for external links.",
13909+
long: "For LaTeX output, the color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of external file links using Typst color syntax.\n"
1390713910
}
1390813911
},
1390913912
{
1391013913
name: "citecolor",
1391113914
schema: "string",
1391213915
tags: {
1391313916
formats: [
13914-
"$pdf-all"
13917+
"$pdf-all",
13918+
"typst"
1391513919
]
1391613920
},
1391713921
description: {
13918-
short: "The color used for citation links using color options allowed by `xcolor`",
13919-
long: "The color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"
13922+
short: "The color used for citation links.",
13923+
long: "For LaTeX output, the color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of citation links using Typst color syntax.\n"
1392013924
}
1392113925
},
1392213926
{
@@ -15138,6 +15142,19 @@ var require_yaml_intelligence_resources = __commonJS({
1513815142
long: "For HTML output, sets the CSS font-family property on code elements.\n\nFor PowerPoint output, sets the font used for code.\n\nFor LaTeX output, the monospace font family for use with `xelatex` or \n`lualatex`: take the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the monspace font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"
1513915143
}
1514015144
},
15145+
{
15146+
name: "codefont",
15147+
schema: "string",
15148+
tags: {
15149+
formats: [
15150+
"typst"
15151+
]
15152+
},
15153+
description: {
15154+
short: "Sets the font used for code in Typst output.",
15155+
long: "For Typst output, sets the font used for displaying code. Takes\nthe name of any font available to Typst (system fonts or fonts in\ndirectories specified by `font-paths`).\n"
15156+
}
15157+
},
1514115158
{
1514215159
name: "fontsize",
1514315160
schema: "string",
@@ -15216,12 +15233,13 @@ var require_yaml_intelligence_resources = __commonJS({
1521615233
schema: "string",
1521715234
tags: {
1521815235
formats: [
15219-
"$pdf-all"
15236+
"$pdf-all",
15237+
"typst"
1522015238
]
1522115239
},
1522215240
description: {
15223-
short: "The math font family for use with `xelatex` or `lualatex`.",
15224-
long: "The math font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"
15241+
short: "The math font family for use with `xelatex`, `lualatex`, or Typst.",
15242+
long: "For LaTeX output, the math font family for use with `xelatex` or\n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n\nFor Typst output, sets the font used for mathematical content.\n"
1522515243
}
1522615244
},
1522715245
{
@@ -15374,12 +15392,13 @@ var require_yaml_intelligence_resources = __commonJS({
1537415392
formats: [
1537515393
"$html-doc",
1537615394
"context",
15377-
"$pdf-all"
15395+
"$pdf-all",
15396+
"typst"
1537815397
]
1537915398
},
1538015399
description: {
1538115400
short: "Sets the line height or spacing for text in the document.",
15382-
long: "For HTML output sets the CSS `line-height` property on the html \nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the \n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n"
15401+
long: "For HTML output sets the CSS `line-height` property on the html\nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the\n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n\nFor Typst output, adjusts the spacing between lines of text.\n"
1538315402
}
1538415403
},
1538515404
{
@@ -23377,6 +23396,11 @@ var require_yaml_intelligence_resources = __commonJS({
2337723396
"Write markdown links as references rather than inline.",
2337823397
"Unique prefix for references (<code>none</code> to prevent automatic\nprefixes)",
2337923398
"Automatically re-render for preview whenever document is saved (note\nthat this requires a preview for the saved document be already running).\nThis option currently works only within VS Code.",
23399+
{
23400+
short: "Editor-specific options (used by RStudio and Positron).",
23401+
long: "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure per-document\neditor settings."
23402+
},
23403+
"Determines where chunk output is shown in the editor.",
2338023404
"Enable (<code>true</code>) or disable (<code>false</code>) Zotero for\na document. Alternatively, provide a list of one or more Zotero group\nlibraries to use with the document.",
2338123405
"The identifier for this publication.",
2338223406
"The identifier value.",
@@ -24752,6 +24776,10 @@ var require_yaml_intelligence_resources = __commonJS({
2475224776
short: "Visual style for theorem environments in Typst output.",
2475324777
long: "Controls how theorems, lemmas, definitions, etc. are rendered: -\n<code>simple</code>: Plain text with bold title and italic body\n(default) - <code>fancy</code>: Colored boxes using brand colors -\n<code>clouds</code>: Rounded colored background boxes -\n<code>rainbow</code>: Colored left border with colored title"
2475424778
},
24779+
{
24780+
short: "Email format version",
24781+
long: "Specifies which email format version to use."
24782+
},
2475524783
"Project configuration.",
2475624784
"Project type (<code>default</code>, <code>website</code>,\n<code>book</code>, or <code>manuscript</code>)",
2475724785
"Files to render (defaults to all files)",
@@ -25106,13 +25134,8 @@ var require_yaml_intelligence_resources = __commonJS({
2510625134
"internal-schema-hack",
2510725135
"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.",
2510825136
{
25109-
short: "Editor-specific options (used by RStudio and Positron).",
25110-
long: "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure per-document\neditor settings."
25111-
},
25112-
"Determines where chunk output is shown in the editor.",
25113-
{
25114-
short: "Email format version",
25115-
long: "Specifies which email format version to use."
25137+
short: "Sets the font used for code in Typst output.",
25138+
long: "For Typst output, sets the font used for displaying code. Takes the\nname of any font available to Typst (system fonts or fonts in\ndirectories specified by <code>font-paths</code>)."
2511625139
}
2511725140
],
2511825141
"schema/external-schemas.yml": [
@@ -25343,12 +25366,12 @@ var require_yaml_intelligence_resources = __commonJS({
2534325366
mermaid: "%%"
2534425367
},
2534525368
"handlers/mermaid/schema.yml": {
25346-
_internalId: 221802,
25369+
_internalId: 222606,
2534725370
type: "object",
2534825371
description: "be an object",
2534925372
properties: {
2535025373
"mermaid-format": {
25351-
_internalId: 221794,
25374+
_internalId: 222598,
2535225375
type: "enum",
2535325376
enum: [
2535425377
"png",
@@ -25364,7 +25387,7 @@ var require_yaml_intelligence_resources = __commonJS({
2536425387
exhaustiveCompletions: true
2536525388
},
2536625389
theme: {
25367-
_internalId: 221801,
25390+
_internalId: 222605,
2536825391
type: "anyOf",
2536925392
anyOf: [
2537025393
{

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

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

0 commit comments

Comments
 (0)