neutralts 1.2.10

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
{:rand; ... :}
==============

Output rand number.

```html
{:rand; :}
{:rand; 1..10 :}
```

Modifiers:
----------

```html
{:^rand; ... :}
```

No flags
--------

Examples
--------

```html
{:rand; :}
{:rand; 1..10 :}
{:rand; 100..999 :}
```

Output:

```html
688755410
3
569
```

---