Fills a template string with values from a table. A placeholder for a column consists of the column name sourrounded by two dollar signs on the left and two on the right. The output is the filled text.
Example:
Template: The $$animal$$ jumps over $$object$$.
Table: animal=dog, object=fence
Output: The dog jumps over the fence.
- Type: TableInput dataData to use for filling the template.