Skip to content

Fixed some grammatical errors #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
layout: default
title: Getting Started
nav_order: 2
description: "Quick start of Jinja2C++ usage"
description: "How to quickly start using Jinja2C++"
---

# Getting started
@@ -16,12 +16,12 @@ Or download the latest release: [Release 0.9.2](https://github.com/jinja2cpp/Jin

Or:
- Clone the Jinja2C++ [repository](https://github.com/jinja2cpp/Jinja2Cpp)
- Build it according with the [instructions](build_and_install.html)
- Link to your project.
- Build it according to the [instructions](build_and_install.html)
- Link it with your project.

## The basic example
## A basic example

Usage of Jinja2C++ in the code is pretty simple:
Using Jinja2C++ in your code is pretty simple:
1. Include Jinja2C++ template declaration:
```c++
#include <jinja2/template.h>
@@ -39,7 +39,7 @@ tpl.Load("{{'Hello World' }}!!!");
std::cout << tpl.RenderAsString(jinja2::ValuesMap{}).value() << std::endl;
```

and get:
and you will get:

`
Hello World!!!