Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions en/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ The template also supports simple interpolation. Given the following template:
``` html
<html>
<head>
<!-- use double mustache for HTML-escaped interpolation -->
<title>{{ title }}</title>

<!-- use triple mustache for non-HTML-escaped interpolation -->
{{{ meta }}}
</head>
<body>
Expand Down
3 changes: 3 additions & 0 deletions ru/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ renderer.renderToString(app, (err, html) => {
``` html
<html>
<head>
<!-- Использовать двойные усы для интерполяции экранированного HTML-кода -->
<title>{{ title }}</title>

<!-- используйте тройные фигурные скобки для подстановки сырого-HTML -->
{{{ meta }}}
</head>
<body>
Expand Down