diff --git a/templates/html.html.twig b/templates/html.html.twig
index c75d092..ffea1db 100644
--- a/templates/html.html.twig
+++ b/templates/html.html.twig
@@ -19,7 +19,7 @@
  * - db_offline: A flag indicating if the database is offline.
  * - placeholder_token: The token for generating head, css, js and js-bottom
  *   placeholders.
- * - html_attributes: Raw HTML attributes for the <html> tag.
+ * - html_attributes: HTML attributes for the <html> tag.
  *   Contains langcode and text direction.
  *
  * @see template_preprocess_html()
@@ -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,7 +48,7 @@ db_offline ? 'db-offline',
   {{ page_top }}
   {{ page }}
   {{ page_bottom }}
-  <js-bottom-placeholder token="{{ placeholder_token|raw }}">
+  <js-bottom-placeholder token="{{ placeholder_token }}">
   <script>
     (function ($) {
       $(document).foundation();
