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

View File

@@ -1,6 +1,5 @@
.structure-outline {
font-family: monospace;
font-size: 18px;
line-height: 1.5;
margin-top: 20px;

View File

@@ -107,46 +107,3 @@
background-color: var(--color-ale);
margin-top: 0;
}
// .fundraising {
// margin-top: 20px;
// width: 100%;
//
// .fundraising-bar {
// width: 100%;
// height: 32px;
// border-radius: 10000px;
// background: var(--color-fog);
// overflow: hidden;
//
// .fundraising-bar-progress {
// width: calc(var(--fundraising-percent) - (4px * 2) - (32px - 4px * 2));
// padding-left: calc(32px - 4px * 2);
// height: calc(100% - 4px * 2);
// margin: 4px;
// border-radius: 10000px;
// background: linear-gradient(to right, var(--color-navy), var(--color-crimson));
// transition: opacity 1s, width 2s;
// }
// }
//
// .goal-metrics {
// display: flex;
// justify-content: space-between;
// font-weight: 800;
// margin-top: 8px;
// margin-left: 20px;
// width: calc(100% - 40px);
// > span {
// transition: opacity 1s;
// }
// }
//
// &.fundraising.loading {
// .goal-metrics > span,
// .fundraising-bar .fundraising-bar-progress {
// opacity: 0;
// }
// }
// }

View File

@@ -0,0 +1,3 @@
table tr td:first-child a {
white-space: nowrap;
}

View File

@@ -0,0 +1,14 @@
#nodes + table tr {
th:last-child {
width: 0;
white-space: nowrap;
}
td:last-child {
width: 0;
code {
white-space: nowrap;
}
}
}

View File

@@ -0,0 +1,14 @@
:is(#context, #inputs, #outputs) + table tr {
th:is(:first-child, :nth-child(3)) {
width: 0;
white-space: nowrap;
}
td:is(:first-child, :nth-child(3)) {
width: 0;
code {
white-space: nowrap;
}
}
}