some cleanup

This commit is contained in:
udo
2026-04-28 12:10:07 +00:00
parent 223cf4c6e1
commit cd445f3c9b
224 changed files with 1558 additions and 38907 deletions
+2 -2
View File
@@ -88,7 +88,7 @@ Literal output with trusted unescaped markup:
```cpp
RENDER(Request& context)
{
<><div class="panel"><?: component("components/card", context.call, context) ?></div></>
<><div class="panel"><?: component("components/card", context.props, context) ?></div></>
}
```
@@ -96,7 +96,7 @@ Roughly becomes:
```cpp
print(R"(<div class="panel">)");
print(component("components/card", context.call, context));
print(component("components/card", context.props, context));
print(R"(</div>)");
```