tickplate icon indicating copy to clipboard operation
tickplate copied to clipboard

Back-tick template engine for JavaScript 💬

Results 3 tickplate issues
Sort by recently updated
recently updated
newest added

Templates syntax as of now: ```js const template1 = t`Example: ${'hello'} ${'myFriend'} great ${'positions'} of Rome`; ``` Better syntax without extra quotes: ```js const template1 = t`Example: ${hello} ${myFriend} great...

metarhia-s'22

- [X] tests and linter show no problems (`npm t`) - [X] tests are added/updated for bug fixes and new features - [X] code is properly formatted (`npm run fmt`)...

Here is my implementation, as there is no progress in https://github.com/metarhia/tickplate/pull/4. @aqrln @primeare, check it please.