f4214dcf
—
Gal Schlezinger 6 years ago
Add description
- README.md +1 -1
- render/Cargo.toml +1 -0
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Render
|
|
2
2
|
|
|
3
|
-
> A simple template engine with the
|
|
3
|
+
> 🔏 A safe and simple template engine with the ergonomics of JSX
|
|
4
4
|
|
|
5
5
|
The `Renderable` trait contains a simple function that returns `String`. This is very handy for type-safe HTML templates, but can also work for writing tree-like terminal coloring mechanism like ReasonML's [Pastel](https://reason-native.com/docs/pastel/).
|
|
6
6
|
|
render/Cargo.toml
CHANGED
|
@@ -3,6 +3,7 @@ name = "render"
|
|
|
3
3
|
version = "0.1.0"
|
|
4
4
|
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2018"
|
|
6
|
+
description = "A safe and simple template engine with the ergonomics of JSX"
|
|
6
7
|
|
|
7
8
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
8
9
|
|