Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[references] Add tabsets among the flag for HTML features #9916

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading