Skip to content

Commit 3552879

Browse files
committed
fixes
1 parent 8068839 commit 3552879

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.metadata.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
# yamllint disable rule:line-length
3+
24
base:
35
description: The base schemas serve as the foundation for every single schema extension
46
you might want to use afterward. This one is mandatory and will unlock access

tasks/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def build(context: Context) -> None:
224224
consolidated_doc = schema_docs_dir / "schema-library.mdx"
225225

226226
all_content = []
227-
all_content.append("<!-- markdownlint-disable-file MD025 -->\n")
227+
all_content.append("---\ntitle: Schema Library Documentation\n---\n<!-- markdownlint-disable-file MD025 -->\n")
228228

229229
with open(METADATA_FILE, "r", encoding="utf-8") as f:
230230
schema = yaml.safe_load(f)

0 commit comments

Comments
 (0)