You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C++ implementation of the Jinja2 Python template engine. This library brings support of powerful Jinja2 template features into the C++ world, reports dynamic HTML pages and source code generation.
@@ -61,7 +60,7 @@ hello; world!!!
61
60
62
61
To use Jinja2C++ in your project you have to:
63
62
* Clone the Jinja2C++ repository
64
-
* Build it according to the [instructions](https://jinja2cpp.dev/docs/build_and_install.html)
63
+
* Build it according to the [instructions](https://jinja2cpp.github.io/docs/build_and_install.html)
65
64
* Link to your project.
66
65
67
66
Usage of Jinja2C++ in the code is pretty simple:
@@ -91,7 +90,7 @@ Hello World!!!
91
90
92
91
That's all!
93
92
94
-
More detailed examples and features description can be found in the documentation: [https://jinja2cpp.dev/docs/usage](https://jinja2cpp.dev/docs/usage)
93
+
More detailed examples and features description can be found in the documentation: [https://jinja2cpp.dev/docs/usage](https://jinja2cpp.github.io/docs/usage)
95
94
96
95
## Current Jinja2 support
97
96
Currently, Jinja2C++ supports the limited number of Jinja2 features. By the way, Jinja2C++ is planned to be a fully [jinja2 specification](http://jinja.pocoo.org/docs/2.10/templates/)-conformant. The current support is limited to:
@@ -112,7 +111,7 @@ Currently, Jinja2C++ supports the limited number of Jinja2 features. By the way,
112
111
- recursive loops
113
112
- space control and 'raw'/'endraw' blocks
114
113
115
-
Full information about Jinja2 specification support and compatibility table can be found here: [https://jinja2cpp.dev/docs/j2_compatibility.html](https://jinja2cpp.dev/docs/j2_compatibility.html).
114
+
Full information about Jinja2 specification support and compatibility table can be found here: [https://jinja2cpp.dev/docs/j2_compatibility.html](https://jinja2cpp.github.io/docs/j2_compatibility.html).
116
115
117
116
## Supported compilers
118
117
Compilation of Jinja2C++ tested on the following compilers (with C++14 and C++17 enabled features):
0 commit comments