Merge pull request #775 from DonPrus/master

Fix problem with cyrillic chars in docs
This commit is contained in:
William Durand 2016-04-21 17:38:04 +02:00
commit 2d214fc934

View File

@ -100,7 +100,7 @@
{% for key, value in infos %}
<tr>
<td>{{ key|title }}</td>
<td>{{ value|json_encode|replace({'\\\\': '\\'})|trim('"') }}</td>
<td>{{ value|json_encode(constant('JSON_UNESCAPED_UNICODE'))|replace({'\\\\': '\\'})|trim('"') }}</td>
</tr>
{% endfor %}
</table>