Sobmit Docs

HTML Page node

HTML Page node card

The HTML Page node generates a complete HTML document from data and instructions using a language model.

Handles

HandlePurpose
DataThe data to render (main line)
promptInstruction 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