Describe the solution you'd like
Define and code a process for handling interpolation in a tag:
<p>This is a {cpaName}</p>
where {cpaName} is replaced with the current value of the CPA named cpaName.
This needs to handle multiple {} in one tag:
<p>Hi {name}, you are {age} years old.</p>
This version will only support CPAs. It will not support pipes, functions, nor expressions.
Describe the solution you'd like Define and code a process for handling interpolation in a tag:
<p>This is a {cpaName}</p>
where{cpaName}
is replaced with the current value of the CPA namedcpaName
.This needs to handle multiple
{}
in one tag:<p>Hi {name}, you are {age} years old.</p>