File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ See below for an example.
8
8
All feedback welcome. Feel free to file bugs, requests for documentation and
9
9
any other feedback to the [ issue tracker] [ issues ] .
10
10
11
+ You can find the documentation about our syntax, features, configuration in our book:
12
+ [ rinja.readthedocs.io] ( https://rinja.readthedocs.io/en/latest/ ) .
13
+
11
14
### Feature highlights
12
15
13
16
* Construct templates using a familiar, easy-to-use syntax
@@ -44,7 +47,7 @@ cargo add rinja
44
47
Now create a directory called ` templates ` in your crate root.
45
48
In it, create a file called ` hello.html ` , containing the following:
46
49
47
- ```
50
+ ``` jinja
48
51
Hello, {{ name }}!
49
52
```
50
53
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description = "Type-safe, compiled Jinja-like templates for Rust"
5
5
documentation = " https://docs.rs/rinja"
6
6
keywords = [" markup" , " template" , " jinja2" , " html" ]
7
7
categories = [" template-engine" ]
8
- homepage = " https://github.com/rinja-rs/rinja "
8
+ homepage = " https://rinja.readthedocs.io/ "
9
9
repository = " https://github.com/rinja-rs/rinja"
10
10
license = " MIT OR Apache-2.0"
11
11
workspace = " .."
Original file line number Diff line number Diff line change 5
5
//! in [`rinja_derive`](https://crates.io/crates/rinja_derive)).
6
6
//!
7
7
//! For feature highlights and a quick start, please review the
8
- //! [README](https://github.com/rinja-rs/rinja/blob/main/README.md).
8
+ //! [README](https://github.com/rinja-rs/rinja/blob/master/README.md).
9
+ //!
10
+ //! You can find the documentation about our syntax, features, configuration in our book:
11
+ //! [rinja.readthedocs.io](https://rinja.readthedocs.io/en/latest/).
9
12
//!
10
13
//! # Creating Rinja templates
11
14
//!
You can’t perform that action at this time.
0 commit comments