functions icon indicating copy to clipboard operation
functions copied to clipboard

adds full underscore style templating engine

Open brianleroux opened this issue 4 years ago • 0 comments

this PR tweaks the proxy templating helper so it can execute arbitrary js and html escape values

the following index.html

<div>${ 'h'.toUpperCase() + 1 }</div>

renders

<div>H1</div>

all orig syntax remains supported

<div>${ arc.static('path/to/file.js') }</div>

brianleroux avatar Jun 12 '20 22:06 brianleroux