Two spaces bleeeehhhh

This commit is contained in:
Ben C 2023-12-28 16:00:59 -05:00
parent f461592c78
commit 33a84240ba
No known key found for this signature in database

View File

@ -22,7 +22,7 @@ const refSlug = SchemaTools.getRefSlug(schema);
const enumVals = SchemaTools.getEnumValues(schema);
const props = SchemaTools.getProps(schema, level);
const descSplit = description?.toString().split("\n").map(l => l.trim()).filter(l => l.length !== 0);
const descSplit = description?.toString().split(" \n").map(l => l.trim()).filter(l => l.length !== 0);
const HeadingTag = levelMap[level] ?? "h6";
---