tickplate
tickplate copied to clipboard
Back-tick template engine for JavaScript 💬
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...
- [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.