EvolvedWeb / evowc

Evolved Web Components
MIT License
8 stars 0 forks source link

Support basic interpolation inside a tag. #89

Open intervalia opened 8 months ago

intervalia commented 8 months ago

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.