Output a string of text with dynamic interpolation using
{{tags}}
within the text. The inputs are dynamically generated based on the interpolation tags used in the text.
{{name}}
, an input named name
will be created. All inputs are optional and accept string values. If an input is not connected, its tag will be replaced with an empty string.{{tag}}
to insert input values. The text supports markdown formatting and will be displayed with syntax highlighting in the editor.Hello World!
Hello World!
Hello {{name}}!
name
input of the first blockHello World!
Can I use multiple interpolation tags?
What happens if an input is missing?
Does the Text Block support markdown?