File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22layout : default
33title : Getting Started
44nav_order : 2
5- description : " Quick start of Jinja2C++ usage "
5+ description : " How to quickly start using Jinja2C++"
66---
77
88# Getting started
@@ -16,12 +16,12 @@ Or download the latest release: [Release 0.9.2](https://github.com/jinja2cpp/Jin
1616
1717Or:
1818- Clone the Jinja2C++ [ repository] ( https://github.com/jinja2cpp/Jinja2Cpp )
19- - Build it according with the [ instructions] ( build_and_install.html )
20- - Link to your project.
19+ - Build it according to the [ instructions] ( build_and_install.html )
20+ - Link it with your project.
2121
22- ## The basic example
22+ ## A basic example
2323
24- Usage of Jinja2C++ in the code is pretty simple:
24+ Using Jinja2C++ in your code is pretty simple:
25251 . Include Jinja2C++ template declaration:
2626``` c++
2727#include < jinja2/template.h>
@@ -39,7 +39,7 @@ tpl.Load("{{'Hello World' }}!!!");
3939std::cout << tpl.RenderAsString(jinja2::ValuesMap{}).value() << std::endl;
4040```
4141
42- and get:
42+ and you will get:
4343
4444`
4545Hello World!!!
You can’t perform that action at this time.
0 commit comments