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
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15594,7 +15594,27 @@ var require_yaml_intelligence_resources = __commonJS({
15594
15594
description: "Change the presentation direction to be RTL\n"
15595
15595
}
15596
15596
],
15597
-
"schema/document-tables.yml": [],
15597
+
"schema/document-tables.yml": [
15598
+
{
15599
+
name: "df-print",
15600
+
schema: {
15601
+
enum: [
15602
+
"default",
15603
+
"kable",
15604
+
"tibble",
15605
+
"paged"
15606
+
]
15607
+
},
15608
+
tags: {
15609
+
engine: "knitr"
15610
+
},
15611
+
default: "kable",
15612
+
description: {
15613
+
short: "Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Defaults to `kable`.\n",
15614
+
long: "Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"
15615
+
}
15616
+
}
15617
+
],
15598
15618
"schema/document-text.yml": [
15599
15619
{
15600
15620
name: "wrap",
@@ -18960,7 +18980,11 @@ var require_yaml_intelligence_resources = __commonJS({
18960
18980
"Download buttons for other formats to include on navbar or sidebar\n(one or more of <code>pdf</code>, <code>epub</code>, and\n<code>docx</code>)",
18961
18981
"Download buttons for other formats to include on navbar or sidebar\n(one or more of <code>pdf</code>, <code>epub</code>, and\n<code>docx</code>)",
18962
18982
"Custom tools for navbar or sidebar",
18963
-
"internal-schema-hack"
18983
+
"internal-schema-hack",
18984
+
{
18985
+
short: "Method used to print tables in Knitr engine documents\n(<code>default</code>, <code>kable</code>, <code>tibble</code>, or\n<code>paged</code>). Defaults to <code>kable</code>.",
18986
+
long: "Method used to print tables in Knitr engine documents:"
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8573,7 +8573,27 @@
8573
8573
"description": "Change the presentation direction to be RTL\n"
8574
8574
}
8575
8575
],
8576
-
"schema/document-tables.yml": [],
8576
+
"schema/document-tables.yml": [
8577
+
{
8578
+
"name": "df-print",
8579
+
"schema": {
8580
+
"enum": [
8581
+
"default",
8582
+
"kable",
8583
+
"tibble",
8584
+
"paged"
8585
+
]
8586
+
},
8587
+
"tags": {
8588
+
"engine": "knitr"
8589
+
},
8590
+
"default": "kable",
8591
+
"description": {
8592
+
"short": "Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Defaults to `kable`.\n",
8593
+
"long": "Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"
8594
+
}
8595
+
}
8596
+
],
8577
8597
"schema/document-text.yml": [
8578
8598
{
8579
8599
"name": "wrap",
@@ -11939,7 +11959,11 @@
11939
11959
"Download buttons for other formats to include on navbar or sidebar\n(one or more of <code>pdf</code>, <code>epub</code>, and\n<code>docx</code>)",
11940
11960
"Download buttons for other formats to include on navbar or sidebar\n(one or more of <code>pdf</code>, <code>epub</code>, and\n<code>docx</code>)",
11941
11961
"Custom tools for navbar or sidebar",
11942
-
"internal-schema-hack"
11962
+
"internal-schema-hack",
11963
+
{
11964
+
"short": "Method used to print tables in Knitr engine documents\n(<code>default</code>, <code>kable</code>, <code>tibble</code>, or\n<code>paged</code>). Defaults to <code>kable</code>.",
11965
+
"long": "Method used to print tables in Knitr engine documents:"
0 commit comments