Skip to content

Updates SSR String Interpolation Documentation #25

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

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 3 additions & 3 deletions en/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ renderer.renderToString(app, (err, html) => {

### Template Interpolation

The template also supports simple interpolation. Given the following template:
The template also supports simple interpolation. To accomplish this wrap variables that you provide in the "render context object" aka `context` in 3 curly braces. For example, given the following template:

``` html
<html>
<head>
<title>{{ title }}</title>
<title>{{{ title }}}</title>
{{{ meta }}}
</head>
<body>
Expand All @@ -119,7 +119,7 @@ The template also supports simple interpolation. Given the following template:
</html>
```

We can provide interpolation data by passing a "render context object" as the second argument to `renderToString`:
We can provide interpolation data by passing a `context` as the second argument to `renderToString`:

``` js
const context = {
Expand Down