Need a way to duplicate a chunk of text for each variable in a list? This tool will save you time and soar wrists by letting you create a template and a list of variables and merge the two to get a repeated chunk of text with variables injected into each iteration.
For example, let’s say you had a list of 100 names of colors and you wanted to generate a function in code for each. Supply the list of colors as your “variables” and set your “template” to:
function #value#() { }
And let the TemplateRepeater take it away generating a chunk of text for each color resembling:
function blue() { }
function red() { }
function green() { }
Simple but surprisingly useful! Enjoy!