Skip to content

Commit adcaeae

Browse files
authored
Merge pull request #13664 from quarto-dev/fix/latex-issue
2 parents 425327e + ba3b571 commit adcaeae

File tree

10 files changed

+38
-22
lines changed

10 files changed

+38
-22
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8540,8 +8540,8 @@ var require_yaml_intelligence_resources = __commonJS({
85408540
icon: {
85418541
string: {
85428542
description: {
8543-
short: "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)",
8544-
long: "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
8543+
short: "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)",
8544+
long: "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
85458545
}
85468546
}
85478547
},
@@ -11675,7 +11675,8 @@ var require_yaml_intelligence_resources = __commonJS({
1167511675
object: {
1167611676
properties: {
1167711677
"trace-filters": "string",
11678-
tests: "object"
11678+
tests: "object",
11679+
"tests-on-ci": "boolean"
1167911680
}
1168011681
}
1168111682
}
@@ -24977,12 +24978,12 @@ var require_yaml_intelligence_resources = __commonJS({
2497724978
mermaid: "%%"
2497824979
},
2497924980
"handlers/mermaid/schema.yml": {
24980-
_internalId: 197491,
24981+
_internalId: 197493,
2498124982
type: "object",
2498224983
description: "be an object",
2498324984
properties: {
2498424985
"mermaid-format": {
24985-
_internalId: 197483,
24986+
_internalId: 197485,
2498624987
type: "enum",
2498724988
enum: [
2498824989
"png",
@@ -24998,7 +24999,7 @@ var require_yaml_intelligence_resources = __commonJS({
2499824999
exhaustiveCompletions: true
2499925000
},
2500025001
theme: {
25001-
_internalId: 197490,
25002+
_internalId: 197492,
2500225003
type: "anyOf",
2500325004
anyOf: [
2500425005
{

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: 7 additions & 6 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: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,8 +1512,8 @@
15121512
"icon": {
15131513
"string": {
15141514
"description": {
1515-
"short": "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)",
1516-
"long": "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
1515+
"short": "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)",
1516+
"long": "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
15171517
}
15181518
}
15191519
},
@@ -4647,7 +4647,8 @@
46474647
"object": {
46484648
"properties": {
46494649
"trace-filters": "string",
4650-
"tests": "object"
4650+
"tests": "object",
4651+
"tests-on-ci": "boolean"
46514652
}
46524653
}
46534654
}
@@ -17949,12 +17950,12 @@
1794917950
"mermaid": "%%"
1795017951
},
1795117952
"handlers/mermaid/schema.yml": {
17952-
"_internalId": 197491,
17953+
"_internalId": 197493,
1795317954
"type": "object",
1795417955
"description": "be an object",
1795517956
"properties": {
1795617957
"mermaid-format": {
17957-
"_internalId": 197483,
17958+
"_internalId": 197485,
1795817959
"type": "enum",
1795917960
"enum": [
1796017961
"png",
@@ -17970,7 +17971,7 @@
1797017971
"exhaustiveCompletions": true
1797117972
},
1797217973
"theme": {
17973-
"_internalId": 197490,
17974+
"_internalId": 197492,
1797417975
"type": "anyOf",
1797517976
"anyOf": [
1797617977
{

src/resources/schema/definitions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2422,6 +2422,7 @@
24222422
properties:
24232423
trace-filters: string
24242424
tests: object
2425+
tests-on-ci: boolean
24252426

24262427
- id: notebook-view-schema
24272428
schema:

src/resources/schema/json-schemas.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2919,6 +2919,9 @@
29192919
},
29202920
"tests": {
29212921
"type": "object"
2922+
},
2923+
"tests-on-ci": {
2924+
"type": "boolean"
29222925
}
29232926
}
29242927
}

src/resources/types/schema-types.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export type NavigationItemObject = {
7979
"aria-label"?: string /* Accessible label for the item. */;
8080
file?: string /* Alias for href */;
8181
href?: string /* Link to file contained with the project or external URL */;
82-
icon?: string /* Name of bootstrap icon (e.g. `github`, `twitter`, `share`)
82+
icon?: string /* Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)
8383
See <https://icons.getbootstrap.com/> for a list of available icons */;
8484
id?: string;
8585
menu?: (NavigationItem)[];
@@ -1208,7 +1208,11 @@ export type ProjectProfile = {
12081208
export type BadParseSchema = JsonObject;
12091209

12101210
export type QuartoDevSchema = {
1211-
_quarto?: { "trace-filters"?: string; tests?: JsonObject };
1211+
_quarto?: {
1212+
"trace-filters"?: string;
1213+
"tests-on-ci"?: boolean;
1214+
tests?: JsonObject;
1215+
};
12121216
};
12131217

12141218
export type NotebookViewSchema = {

src/resources/types/zod/schema-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1247,6 +1247,7 @@ export const ZodQuartoDevSchema = z.object({
12471247
_quarto: z.object({
12481248
"trace-filters": z.string(),
12491249
tests: z.object({}).passthrough(),
1250+
"tests-on-ci": z.boolean(),
12501251
}).passthrough().partial(),
12511252
}).passthrough().partial();
12521253

tests/docs/smoke-all/article-layout/tables/tufte.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ execute:
1414
reference-location: margin
1515
citation-location: margin
1616
bibliography: skeleton.bib
17+
_quarto:
18+
tests-on-ci: false
1719
---
1820

1921
# Introduction

tests/smoke/render/render-page-layout.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@ import { docs } from "../../utils.ts";
99
import { testRender } from "./render.ts";
1010

1111
// Simple rendering tests
12-
testRender(docs("page-layout/tufte-pdf.qmd"), "pdf", true);
12+
// TODO: 10/11/2025 - SKIPPED FOR NOW DUE TO LATEX UPDATE PROBLEMS
13+
// See https://github.com/quarto-dev/quarto-cli/issues/13647
14+
// testRender(docs("page-layout/tufte-pdf.qmd"), "pdf", true);
1315
testRender(docs("page-layout/tufte-html.qmd"), "html", false);

0 commit comments

Comments
 (0)