neutralts 1.3.0

Neutral TS template engine is a web template designed to work with any programming language via IPC and natively as library/crate in Rust.
Documentation
{:lang; ... :}
================

Returns the current language defined in the schema. The value is taken from `inherit.locale.current`.

Example:

**Schema**
```json
{
    "inherit": {
        "locale": {
            "current": "en"
        }
    }
}
```

**Template**
```html
<html lang="{:lang;:}">
...
</html>
```

**Result**
```html
<html lang="en">
...
</html>
```

No modifiers
----------


No flags
--------