You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -8540,8 +8540,8 @@ var require_yaml_intelligence_resources = __commonJS({
8540
8540
icon: {
8541
8541
string: {
8542
8542
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"
8545
8545
}
8546
8546
}
8547
8547
},
@@ -8724,6 +8724,25 @@ var require_yaml_intelligence_resources = __commonJS({
8724
8724
]
8725
8725
}
8726
8726
},
8727
+
{
8728
+
id: "external-engine",
8729
+
schema: {
8730
+
object: {
8731
+
closed: true,
8732
+
properties: {
8733
+
path: {
8734
+
path: {
8735
+
description: "Path to the TypeScript module for the execution engine"
8736
+
}
8737
+
}
8738
+
},
8739
+
required: [
8740
+
"path"
8741
+
]
8742
+
},
8743
+
description: "An execution engine not pre-loaded in Quarto"
8744
+
}
8745
+
},
8727
8746
{
8728
8747
id: "document-comments-configuration",
8729
8748
anyOf: [
@@ -9427,6 +9446,30 @@ var require_yaml_intelligence_resources = __commonJS({
9427
9446
],
9428
9447
description: "Enable Google Analytics for this website"
9429
9448
},
9449
+
"plausible-analytics": {
9450
+
anyOf: [
9451
+
"string",
9452
+
{
9453
+
object: {
9454
+
closed: true,
9455
+
properties: {
9456
+
path: {
9457
+
path: {
9458
+
description: "Path to a file containing the Plausible Analytics script snippet"
9459
+
}
9460
+
}
9461
+
},
9462
+
required: [
9463
+
"path"
9464
+
]
9465
+
}
9466
+
}
9467
+
],
9468
+
description: {
9469
+
short: "Enable Plausible Analytics for this website by providing a script snippet or path to snippet file",
9470
+
long: 'Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n <script async src="https://plausible.io/js/script.js"><\/script>\n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at <https://plausible.io>\n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see <https://plausible.io/docs/plausible-script>\n'
9471
+
}
9472
+
},
9430
9473
announcement: {
9431
9474
anyOf: [
9432
9475
"string",
@@ -9498,12 +9541,12 @@ var require_yaml_intelligence_resources = __commonJS({
9498
9541
properties: {
9499
9542
type: {
9500
9543
enum: [
9501
-
"implied",
9502
-
"express"
9544
+
"express",
9545
+
"implied"
9503
9546
],
9504
9547
description: {
9505
9548
short: "The type of consent that should be requested",
9506
-
long: "The type of consent that should be requested, using one of these two values:\n\n- `implied` (default): This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n\n- `express`: This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn\u2019t agree).\n"
9549
+
long: "The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn\u2019t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"
9507
9550
}
9508
9551
},
9509
9552
style: {
@@ -11651,7 +11694,67 @@ var require_yaml_intelligence_resources = __commonJS({
11651
11694
object: {
11652
11695
properties: {
11653
11696
"trace-filters": "string",
11654
-
tests: "object"
11697
+
tests: {
11698
+
object: {
11699
+
properties: {
11700
+
run: {
11701
+
object: {
11702
+
description: "Control when tests should run",
11703
+
properties: {
11704
+
ci: {
11705
+
boolean: {
11706
+
description: "Run tests on CI (true = run, false = skip)",
11707
+
default: true
11708
+
}
11709
+
},
11710
+
os: {
11711
+
description: "Run tests ONLY on these platforms (whitelist)",
11712
+
anyOf: [
11713
+
{
11714
+
enum: [
11715
+
"linux",
11716
+
"darwin",
11717
+
"windows"
11718
+
]
11719
+
},
11720
+
{
11721
+
arrayOf: {
11722
+
enum: [
11723
+
"linux",
11724
+
"darwin",
11725
+
"windows"
11726
+
]
11727
+
}
11728
+
}
11729
+
]
11730
+
},
11731
+
not_os: {
11732
+
description: "Don't run tests on these platforms (blacklist)",
11733
+
anyOf: [
11734
+
{
11735
+
enum: [
11736
+
"linux",
11737
+
"darwin",
11738
+
"windows"
11739
+
]
11740
+
},
11741
+
{
11742
+
arrayOf: {
11743
+
enum: [
11744
+
"linux",
11745
+
"darwin",
11746
+
"windows"
11747
+
]
11748
+
}
11749
+
}
11750
+
]
11751
+
}
11752
+
}
11753
+
}
11754
+
}
11755
+
}
11756
+
}
11757
+
}
11655
11758
}
11656
11759
}
11657
11760
}
@@ -17235,8 +17338,8 @@ var require_yaml_intelligence_resources = __commonJS({
17235
17338
]
17236
17339
},
17237
17340
description: {
17238
-
short: "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n",
17239
-
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"
17341
+
short: "Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n",
17342
+
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"
17240
17343
}
17241
17344
},
17242
17345
{
@@ -19294,7 +19397,7 @@ var require_yaml_intelligence_resources = __commonJS({
19294
19397
properties: {
19295
19398
url: {
19296
19399
string: {
19297
-
default: "https://reveal-multiplex.glitch.me/",
19400
+
default: "https://multiplex.up.railway.app/",
19298
19401
description: "Multiplex token server (defaults to Reveal-hosted server)\n"
19299
19402
}
19300
19403
},
@@ -20134,6 +20237,16 @@ var require_yaml_intelligence_resources = __commonJS({
20134
20237
},
20135
20238
formats: {
20136
20239
schema: "object"
20240
+
},
20241
+
engines: {
20242
+
arrayOf: {
20243
+
anyOf: [
20244
+
"string",
20245
+
{
20246
+
ref: "external-engine"
20247
+
}
20248
+
]
20249
+
}
20137
20250
}
20138
20251
}
20139
20252
}
@@ -20572,7 +20685,14 @@ var require_yaml_intelligence_resources = __commonJS({
20572
20685
{
20573
20686
name: "engines",
20574
20687
schema: {
20575
-
arrayOf: "string"
20688
+
arrayOf: {
20689
+
anyOf: [
20690
+
"string",
20691
+
{
20692
+
ref: "external-engine"
20693
+
}
20694
+
]
20695
+
}
20576
20696
},
20577
20697
description: "List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."
20578
20698
}
@@ -21336,8 +21456,8 @@ var require_yaml_intelligence_resources = __commonJS({
21336
21456
"Alias for href",
21337
21457
"Link to file contained with the project or external URL",
21338
21458
{
21339
-
short: "Name of bootstrap icon (e.g. <code>github</code>,\n<code>twitter</code>, <code>share</code>)",
21340
-
long: 'Name of bootstrap icon (e.g. <code>github</code>,\n<code>twitter</code>, <code>share</code>) See <a href="https://icons.getbootstrap.com/" class="uri">https://icons.getbootstrap.com/</a> for a list of available\nicons'
21459
+
short: "Name of bootstrap icon (e.g. <code>github</code>,\n<code>bluesky</code>, <code>share</code>)",
21460
+
long: 'Name of bootstrap icon (e.g. <code>github</code>,\n<code>bluesky</code>, <code>share</code>) See <a href="https://icons.getbootstrap.com/" class="uri">https://icons.getbootstrap.com/</a> for a list of available\nicons'
21341
21461
},
21342
21462
"Text to display for item (defaults to the document title if not\nprovided)",
21343
21463
"Alias for href",
@@ -21373,6 +21493,8 @@ var require_yaml_intelligence_resources = __commonJS({
21373
21493
"The light theme name.",
21374
21494
"The dark theme name.",
21375
21495
"The language that should be used when displaying the commenting\ninterface.",
21496
+
"An execution engine not pre-loaded in Quarto",
21497
+
"Path to the TypeScript module for the execution engine",
21376
21498
"The Github repo that will be used to store comments.",
21377
21499
"The label that will be assigned to issues created by Utterances.",
21378
21500
{
@@ -21531,6 +21653,11 @@ var require_yaml_intelligence_resources = __commonJS({
21531
21653
short: "The version number of Google Analytics to use.",
21532
21654
long: "The version number of Google Analytics to use."
21533
21655
},
21656
+
{
21657
+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
21658
+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
21659
+
},
21660
+
"Path to a file containing the Plausible Analytics script snippet",
21534
21661
"Provides an announcement displayed at the top of the page.",
21535
21662
"The content of the announcement",
21536
21663
"Whether this announcement may be dismissed by the user.",
@@ -21692,6 +21819,11 @@ var require_yaml_intelligence_resources = __commonJS({
21692
21819
short: "The version number of Google Analytics to use.",
21693
21820
long: "The version number of Google Analytics to use."
21694
21821
},
21822
+
{
21823
+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
21824
+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
21825
+
},
21826
+
"Path to a file containing the Plausible Analytics script snippet",
21695
21827
"Provides an announcement displayed at the top of the page.",
21696
21828
"The content of the announcement",
21697
21829
"Whether this announcement may be dismissed by the user.",
@@ -22484,6 +22616,10 @@ var require_yaml_intelligence_resources = __commonJS({
22484
22616
"Specify a default profile and profile groups",
22485
22617
"Default profile to apply if QUARTO_PROFILE is not defined.",
22486
22618
"Define a profile group for which at least one profile is always\nactive.",
22619
+
"Control when tests should run",
22620
+
"Run tests on CI (true = run, false = skip)",
22621
+
"Run tests ONLY on these platforms (whitelist)",
22622
+
"Don\u2019t run tests on these platforms (blacklist)",
22487
22623
"The path to the locally referenced notebook.",
22488
22624
"The title of the notebook when viewed.",
22489
22625
"The url to use when viewing this notebook.",
@@ -24082,6 +24218,11 @@ var require_yaml_intelligence_resources = __commonJS({
24082
24218
short: "The version number of Google Analytics to use.",
24083
24219
long: "The version number of Google Analytics to use."
24084
24220
},
24221
+
{
24222
+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
24223
+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
24224
+
},
24225
+
"Path to a file containing the Plausible Analytics script snippet",
24085
24226
"Provides an announcement displayed at the top of the page.",
24086
24227
"The content of the announcement",
24087
24228
"Whether this announcement may be dismissed by the user.",
@@ -24432,6 +24573,11 @@ var require_yaml_intelligence_resources = __commonJS({
24432
24573
short: "The version number of Google Analytics to use.",
24433
24574
long: "The version number of Google Analytics to use."
24434
24575
},
24576
+
{
24577
+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
24578
+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
24579
+
},
24580
+
"Path to a file containing the Plausible Analytics script snippet",
24435
24581
"Provides an announcement displayed at the top of the page.",
24436
24582
"The content of the announcement",
24437
24583
"Whether this announcement may be dismissed by the user.",
@@ -24955,12 +25101,12 @@ var require_yaml_intelligence_resources = __commonJS({
24955
25101
mermaid: "%%"
24956
25102
},
24957
25103
"handlers/mermaid/schema.yml": {
24958
-
_internalId: 197624,
25104
+
_internalId: 198096,
24959
25105
type: "object",
24960
25106
description: "be an object",
24961
25107
properties: {
24962
25108
"mermaid-format": {
24963
-
_internalId: 197616,
25109
+
_internalId: 198088,
24964
25110
type: "enum",
24965
25111
enum: [
24966
25112
"png",
@@ -24976,7 +25122,7 @@ var require_yaml_intelligence_resources = __commonJS({
24976
25122
exhaustiveCompletions: true
24977
25123
},
24978
25124
theme: {
24979
-
_internalId: 197623,
25125
+
_internalId: 198095,
24980
25126
type: "anyOf",
24981
25127
anyOf: [
24982
25128
{
@@ -34281,7 +34427,7 @@ function parseShortcode(shortCodeCapture) {
34281
34427
}
34282
34428
34283
34429
// ../break-quarto-md.ts
34284
-
async function breakQuartoMd(src, validate2 = false, lenient = false) {
0 commit comments