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: news/changelog-1.4.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@
37
37
- ([#6714](https://github.com/quarto-dev/quarto-cli/issues/6714)): Display title block for HTML when other (non-title/author/subtitle) metadata is present.
38
38
- ([#6833](https://github.com/quarto-dev/quarto-cli/issues/6833)): Handle partially-specified aspect ratio, width, and height attributes in `video` shortcode.
39
39
- ([#7137](https://github.com/quarto-dev/quarto-cli/discussions/7137)): Automatically set `rel="noopener"` when setting a target on external links
40
+
- ([#7187](https://github.com/quarto-dev/quarto-cli/issues/7187)): Add `html-table-processing: none` to document- and project-level metadata to disable HTML table processing. Add `{html-table-processing="none"}` to a fenced div to disable HTML table processing for the elements in that div.
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16200,6 +16200,15 @@ var require_yaml_intelligence_resources = __commonJS({
16200
16200
short: "Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n",
16201
16201
long: "Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"
16202
16202
}
16203
+
},
16204
+
{
16205
+
name: "html-table-processing",
16206
+
schema: {
16207
+
enum: [
16208
+
"none"
16209
+
]
16210
+
},
16211
+
description: "If `none`, do not process tables in HTML input."
16203
16212
}
16204
16213
],
16205
16214
"schema/document-reveal-content.yml": [
@@ -21019,7 +21028,7 @@ var require_yaml_intelligence_resources = __commonJS({
21019
21028
"Keep the markdown file generated by executing code",
21020
21029
"Keep the notebook file generated from executing code.",
21021
21030
"Filters to pre-process ipynb files before rendering to markdown",
21022
-
"Speicfy which nodes should be run interactively (displaying output\nfrom expressions)",
21031
+
"Specify which nodes should be run interactively (displaying output\nfrom expressions)",
21023
21032
"Keep the intermediate typst file used during render.",
21024
21033
"Keep the intermediate tex file used during render.",
21025
21034
{
@@ -21908,7 +21917,8 @@ var require_yaml_intelligence_resources = __commonJS({
21908
21917
},
21909
21918
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
21910
21919
"Manuscript configuration",
21911
-
"internal-schema-hack"
21920
+
"internal-schema-hack",
21921
+
"If <code>none</code>, do not process tables in HTML input."
21912
21922
],
21913
21923
"schema/external-schemas.yml": [
21914
21924
{
@@ -22132,12 +22142,12 @@ var require_yaml_intelligence_resources = __commonJS({
22132
22142
mermaid: "%%"
22133
22143
},
22134
22144
"handlers/mermaid/schema.yml": {
22135
-
_internalId: 168151,
22145
+
_internalId: 168154,
22136
22146
type: "object",
22137
22147
description: "be an object",
22138
22148
properties: {
22139
22149
"mermaid-format": {
22140
-
_internalId: 168143,
22150
+
_internalId: 168146,
22141
22151
type: "enum",
22142
22152
enum: [
22143
22153
"png",
@@ -22153,7 +22163,7 @@ var require_yaml_intelligence_resources = __commonJS({
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9172,6 +9172,15 @@
9172
9172
"short": "Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n",
9173
9173
"long": "Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"
9174
9174
}
9175
+
},
9176
+
{
9177
+
"name": "html-table-processing",
9178
+
"schema": {
9179
+
"enum": [
9180
+
"none"
9181
+
]
9182
+
},
9183
+
"description": "If `none`, do not process tables in HTML input."
9175
9184
}
9176
9185
],
9177
9186
"schema/document-reveal-content.yml": [
@@ -13991,7 +14000,7 @@
13991
14000
"Keep the markdown file generated by executing code",
13992
14001
"Keep the notebook file generated from executing code.",
13993
14002
"Filters to pre-process ipynb files before rendering to markdown",
13994
-
"Speicfy which nodes should be run interactively (displaying output\nfrom expressions)",
14003
+
"Specify which nodes should be run interactively (displaying output\nfrom expressions)",
13995
14004
"Keep the intermediate typst file used during render.",
13996
14005
"Keep the intermediate tex file used during render.",
13997
14006
{
@@ -14880,7 +14889,8 @@
14880
14889
},
14881
14890
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
14882
14891
"Manuscript configuration",
14883
-
"internal-schema-hack"
14892
+
"internal-schema-hack",
14893
+
"If <code>none</code>, do not process tables in HTML input."
0 commit comments