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

Replace all occurrences in code part.

```html
{:replace; /from/to/ >> code :}
```

Any delimiter can be used:

```html
{:replace; ~from~to~ >> ... :}
{:replace; ~\~/~ >> ... :}
{:replace; #from#to# >> ... :}
{:replace; |from|to| >> ... :}
{:replace; XfromXtoX >> ... :}
...
```

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

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

No flags
--------

Example
-------

```html
{:replace; / /_/ >> Hello World :}
```

Output

```html
Hello_World
```

---