skabelon 0.1.2

Simple templating engine for rust using angular syntax
Documentation
# Skabelon

Simple templating engine for rust. 

Uses angular syntax, so you will be able to use the build in angular parser from prettier for formatting.

**Note that template logic is not supported**. Calculate logic in your rust files.

## Features
- Angular syntax
- Templates are parsed at runtime. Templates can be recalculated with `templates.reload()`.
- `@if() {} @else if() {} @else {}` support.
- `@for() {}` support for iteration.
- `@include {}` support for partials. Partials can have a `@content` where block from `@include` will be rendered.
- `object["value"]` or `object.value` for accessing object values

## Usage
Templates can be loaded with a glob or string.

```rust
let mut templates = Templates::new();
templates.load_glob("templates/**/*.html");

let template_str =
    "<table>@for(row in table) {<tr>@for(col in row) {<td>{{col}}</td>}</tr>}</table>";
templates.load_str("template", template_str);
```

See tests in `lib.rs` for more usage.