 templates/html.html.twig | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/templates/html.html.twig b/templates/html.html.twig
index b7717af..7ab98f8 100644
--- a/templates/html.html.twig
+++ b/templates/html.html.twig
@@ -34,12 +34,12 @@ db_offline ? 'db-offline',
 ]
 %}
 <!DOCTYPE html>
-<html {{ html_attributes|raw }}>
+<html {{ html_attributes }}>
   <head>
-    <head-placeholder token="{{ placeholder_token|raw }}">
+    <head-placeholder token="{{ placeholder_token }}">
     <title>{{ head_title|safe_join(' | ') }}</title>
-    <css-placeholder token="{{ placeholder_token|raw }}">
-    <js-placeholder token="{{ placeholder_token|raw }}">
+    <css-placeholder token="{{ placeholder_token }}">
+    <js-placeholder token="{{ placeholder_token }}">
   </head>
   <body{{ attributes.addClass(body_classes) }}>
   <a href="#main-content" class="visually-hidden focusable skip-link">
@@ -48,6 +48,6 @@ db_offline ? 'db-offline',
   {{ page_top }}
   {{ page }}
   {{ page_bottom }}
-  <js-bottom-placeholder token="{{ placeholder_token|raw }}">
+  <js-bottom-placeholder token="{{ placeholder_token }}">
   </body>
 </html>
--