Text Template

A text template with ${ArgA}, ${ArgB}, ... placeholders substituted from connected inputs.

A text template with ${ArgA}, ${ArgB}, ... placeholders filled from connected inputs.

Dynamic ports

A resolver exposes one arg input per ${ArgA}, ${ArgB}, … placeholder in the template, growing the list one empty slot at a time as inputs are connected. Each connected input fills the matching placeholder by position.

Inputs

  • ArgArepeatsAny. Provides the first substitution argument for the template. The node exposes ArgA, ArgB, and later slots one by one as earlier inputs are wired, and each connected input fills the matching placeholder in the template.

Outputs

  • ValueString. Represents the rendered template text after placeholder substitution.

Configuration

  • TemplateTextarea. Controls the text template to render. The template may contain placeholders such as ${ArgA} and ${ArgB}, and each connected arg input replaces the matching placeholder by position. Unfilled placeholders remain part of the template until their corresponding inputs are connected.

Example use cases

Compose a message

Template a comment like "Assigned to ${ArgA} on ${ArgB}" and connect a user and a date to fill the slots.

See also