mirror of
https://github.com/enthus1ast/formatja
synced 2026-01-13 21:21:40 +00:00
No description
|
|
||
|---|---|---|
| src | ||
| .gitignore | ||
| formatja.nimble | ||
| readme.md | ||
formatja
A simple runtime string interpolation library, that leverages nimjas lexer.
var formatSQLITE = "{{documentName}}__{{dateStr}}.sqlite"
let res = format(formatSQLITE, {"documentName": "FOO", "dateStr": "DATESTR"})
assert res == "FOO__DATESTR.sqlite"
{{ some }} a variable
{# a comment #} a comment
{% ignored %} ignored for now