Add the auto-generated node catalog to the website's user manual (#3662)

* Generate the MVP node catalog in the manual (with some placeholders)

* Implement nearly the rest of everything

* Move to the tools directory and make it generate nicer default values

* Add category descriptions

* Organize file structure and improve type naming

* Improve book table of contents code

* Add collapsing chapter navigation to the book template

* Add to build workflow

* Clean up site structure
This commit is contained in:
Keavon Chambers
2026-01-20 22:52:03 -08:00
committed by GitHub
parent 5543afd44b
commit 7af60e02a3
61 changed files with 1131 additions and 384 deletions
+7 -3
View File
@@ -375,7 +375,7 @@ body > .page {
// ELEMENT SPACING RULES
// =====================
:is(h1, h2, h3, h4, article > :first-child, details > summary) ~ :is(p, ul, ol, ol li p, img, a:has(> img:only-child)),
:is(h1, h2, h3, h4, article > :first-child, details > summary) ~ :is(p, ul, ol, ol li p, img, details, a:has(> img:only-child)),
:is(h1, h2, h3, h4, article > :first-child) ~ :is(ul, ol) li p + img,
:is(h1, h2, h3, h4, p) ~ .feature-icons,
p ~ :is(h1, h2, h3, h4, details summary, blockquote, .image-comparison, .video-background, .youtube-embed),
@@ -429,12 +429,12 @@ h6 {
}
h2 {
font-size: calc(1rem * 16 / 9);
font-size: 1.75rem;
font-weight: 700;
}
h3 {
font-size: calc(1rem * 4 / 3);
font-size: 1.25rem;
}
h4,
@@ -496,6 +496,10 @@ table {
margin: 0;
padding: 20px;
p {
text-align: left;
}
&:first-child {
padding-left: 10px;
}