Skip to content

Commit

Permalink
Merge pull request #9916 from quarto-dev/references/tabsets
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv authored Jun 10, 2024
2 parents 8993510 + e09ae92 commit b398fdf
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 12 deletions.
20 changes: 16 additions & 4 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15985,6 +15985,17 @@ var require_yaml_intelligence_resources = __commonJS({
},
description: "Enables hover over a section title to see an anchor link."
},
{
name: "tabsets",
schema: "boolean",
default: true,
tags: {
formats: [
"$html-doc"
]
},
description: "Enables tabsets to present content."
},
{
name: "smooth-scroll",
schema: "boolean",
Expand Down Expand Up @@ -22815,7 +22826,8 @@ var require_yaml_intelligence_resources = __commonJS({
},
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
"Manuscript configuration",
"internal-schema-hack"
"internal-schema-hack",
"Enables tabsets to present content."
],
"schema/external-schemas.yml": [
{
Expand Down Expand Up @@ -23044,12 +23056,12 @@ var require_yaml_intelligence_resources = __commonJS({
mermaid: "%%"
},
"handlers/mermaid/schema.yml": {
_internalId: 186345,
_internalId: 186347,
type: "object",
description: "be an object",
properties: {
"mermaid-format": {
_internalId: 186337,
_internalId: 186339,
type: "enum",
enum: [
"png",
Expand All @@ -23065,7 +23077,7 @@ var require_yaml_intelligence_resources = __commonJS({
exhaustiveCompletions: true
},
theme: {
_internalId: 186344,
_internalId: 186346,
type: "anyOf",
anyOf: [
{
Expand Down
20 changes: 16 additions & 4 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 16 additions & 4 deletions src/resources/editor/tools/yaml/yaml-intelligence-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -8957,6 +8957,17 @@
},
"description": "Enables hover over a section title to see an anchor link."
},
{
"name": "tabsets",
"schema": "boolean",
"default": true,
"tags": {
"formats": [
"$html-doc"
]
},
"description": "Enables tabsets to present content."
},
{
"name": "smooth-scroll",
"schema": "boolean",
Expand Down Expand Up @@ -15787,7 +15798,8 @@
},
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
"Manuscript configuration",
"internal-schema-hack"
"internal-schema-hack",
"Enables tabsets to present content."
],
"schema/external-schemas.yml": [
{
Expand Down Expand Up @@ -16016,12 +16028,12 @@
"mermaid": "%%"
},
"handlers/mermaid/schema.yml": {
"_internalId": 186345,
"_internalId": 186347,
"type": "object",
"description": "be an object",
"properties": {
"mermaid-format": {
"_internalId": 186337,
"_internalId": 186339,
"type": "enum",
"enum": [
"png",
Expand All @@ -16037,7 +16049,7 @@
"exhaustiveCompletions": true
},
"theme": {
"_internalId": 186344,
"_internalId": 186346,
"type": "anyOf",
"anyOf": [
{
Expand Down
7 changes: 7 additions & 0 deletions src/resources/schema/document-options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@
formats: [$html-doc]
description: Enables hover over a section title to see an anchor link.

- name: tabsets
schema: boolean
default: true
tags:
formats: [$html-doc]
description: Enables tabsets to present content.

- name: smooth-scroll
schema: boolean
default: false
Expand Down

0 comments on commit b398fdf

Please sign in to comment.