Template filler

[string/Template filler]


Substitutes parameters into a template. Example:

  1. "Hello {subject}!"@0 is received via template

  2. {"subject":"world"}@0 is received via params

  3. "Hello world!"@0 is sent via filled


Keywords: string, template

Input ports

  • template: string

    The template to be filled

  • params: {string: any}

    The actual parameters used for filling the template

Output ports

  • filled: string

    Sends the template filled with the given values from params.

Last updated