HTML Page node

The HTML Page node generates a complete HTML document from data and instructions using a language model.
Handles
| Handle | Purpose |
|---|---|
Data | The data to render (main line) |
prompt | Instruction override (how to build the page) |
Configuration
- Model — a language model (must support structured output).
- Instructions — how to build the document.
- With scripts — allow embedded JavaScript in the generated page.
Output
The node returns an HTML document:
{ "html": "<!doctype html><html>…</html>" } The Output node renders it as an interactive preview.
Example
Deep Research → HTML Page (instructions: “turn the report into a styled article page”) → Output.
Notes
- Requires a model with structured-output support.
- Scripts are disabled by default for safety; enable them when you need interactive pages.
Related
- Table Generation — structured data instead of a page.
- Presentation — slides instead of a page.