Skip to content
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

Avoid multiline opening tag for single attribute #42

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

UnknownPlatypus
Copy link
Contributor

Opening tags with a single attribute exceeding line width are wrapping but it's not really helping readability and adds a lot of vertical space (especially when nested). I added a bunch of test cases to showcase the formatting causing some churn on my work codebase (see the first commit).

-<div class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls grey_color">
-    <div class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls">
-        <div class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls">
-            Deeply nested string
-        </div>
-    </div>
-</div>  
+<div
+  class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls grey_color"
+>
+  <div
+    class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls"
+  >
+    <div
+      class="my_very_long_class_name_because_bem_or_tailwind_that_should_not_wrap_pls"
+    >
+      Deeply nested string
+    </div>
+  </div>
+</div>

This patch try to keep an opening HTML tag with a single attribute on a single line when applicable. This was really successful for me on my work codebase (~2k html files, 250k LOC, using mostly BEM classes or tailwind classes) with over 300 files fixed with clear readability wins!

Prettier suffer from the same issue (see prettier/prettier#10918 (comment)) and because of that, the tailwind team (and others) are using some crazy printwidth to workaround this behavior.

It could maybe be behind a configuration flag like keepSingleAttrOnSingleLine or any other better naming you find. Let me know if I should add such flag.

@g-plane
Copy link
Owner

g-plane commented Aug 14, 2024

This must be behind a configuration option, but I'm not sure its naming.

@UnknownPlatypus UnknownPlatypus force-pushed the experiment/single-attr-nowrap branch from b3f9f34 to f0201ea Compare August 14, 2024 09:23
@UnknownPlatypus
Copy link
Contributor Author

This must be behind a configuration option, but I'm not sure its naming.

Maybe preferSingleLineOpeningTag /preferSingleLineTag because the same type of behavior could be nice for tags with no attributes at all. The flag could cover both cases.

For example, markup_fmt currently wrap tags for the following snippet with small print width and I'd like to do a followup PR to avoid that and keep the snippet unchanged.

-<html>
-  <body>
-  </body>
-</html>
+<html
+>
+  <body
+  >
+  </body
+  >
+</html
+>

@UnknownPlatypus
Copy link
Contributor Author

UnknownPlatypus commented Aug 15, 2024

I added a configuration option and updated the tests accordingly. I went for preferSingleLineOpeningTag for now, let me know if you want something else when you find a good naming for such option. I'll update the PR.

I set the default value to the current behavior, we could eventually do the opposite if you want to promote the new behavior.

@UnknownPlatypus
Copy link
Contributor Author

Hey @g-plane , have you had some time to consider this addition to markup_fmt ?
I've been running this against some open source jinja repos and it gives great outputs (especially for inline style or long tailwind classes).
I'm still not sure about the config var naming, maybe you have great ideas ?

zulip/zulip (+13 -39 lines across 9 files)

templates/corporate/billing/billing.html~L534

                                         class="cancel-current-plan plan-toggle-action input-box billing-page-field"
                                         id="cancel-subscription"
                                     >
-                                        <button
-                                            class="plan-toggle-action-button {% if is_self_hosted_billing %}cancel-current-self-hosted-plan-button{% else %}cancel-current-cloud-plan-button{% endif %}"
-                                        >
+                                        <button class="plan-toggle-action-button {% if is_self_hosted_billing %}cancel-current-self-hosted-plan-button{% else %}cancel-current-cloud-plan-button{% endif %}">
                                             <span class="billing-button-text">Cancel plan</span>
                                             <object
                                                 class="loader billing-button-loader"

templates/corporate/billing/event_status.html~L30

                         <div class="zulip-loading-logo">
                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 773.12 773.12">
                                 <circle cx="386.56" cy="386.56" r="386.56" />
-                                <path
-                                    d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z"
-                                />
+                                <path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" />
                             </svg>
                         </div>
                         <div id="webhook_loading_indicator"></div>

templates/corporate/billing/event_status.html~L48

                         <div class="zulip-loading-logo">
                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 773.12 773.12">
                                 <circle cx="386.56" cy="386.56" r="386.56" />
-                                <path
-                                    d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z"
-                                />
+                                <path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" />
                             </svg>
                         </div>
                         <div id="restartsession_loading_indicator"></div>

templates/corporate/billing/remote_billing_email_confirmation_sent.html~L11

 
 {% block portico_content %}
     <div class="app portico-page">
-        <div
-            class="app-main portico-page-container center-block flex full-page account-creation account-email-confirm-container new-style"
-        >
+        <div class="app-main portico-page-container center-block flex full-page account-creation account-email-confirm-container new-style">
             <div class="inline-block">
                 <div class="get-started">
                     {% if remote_server_hostname %}

templates/corporate/plans.html~L16

         {% include 'zerver/landing_nav.html' %}
     {% endif %}
 
-    <div
-        class="portico-pricing plans {% if is_self_hosted_realm %} showing-self-hosted {% else %} showing-cloud {% endif %}"
-    >
+    <div class="portico-pricing plans {% if is_self_hosted_realm %} showing-self-hosted {% else %} showing-cloud {% endif %}">
         <div class="body-bg">
             <div class="body-bg__layer"></div>
         </div>

templates/zerver/accounts_home.html~L16

             <div class="lead">
                 <h1 class="get-started">{{ _("Sign up for Zulip") }}</h1>
             </div>
-            <div
-                class="app-main register-page-container white-box {% if realm_invite_required and not from_multiuse_invite %}closed-realm{% endif %}"
-            >
+            <div class="app-main register-page-container white-box {% if realm_invite_required and not from_multiuse_invite %}closed-realm{% endif %}">
                 <div class="register-form new-style">
                     {% if realm_name %}
                         <div class="left-side">

templates/zerver/accounts_send_confirm.html~L10

 page can be easily identified in it's respective JavaScript file -->
     <div data-page-id="accounts-send-confirm"></div>
     <div class="app portico-page">
-        <div
-            class="app-main portico-page-container center-block flex full-page account-creation account-email-confirm-container new-style"
-        >
+        <div class="app-main portico-page-container center-block flex full-page account-creation account-email-confirm-container new-style">
             <div class="inline-block">
                 <div class="get-started">
                     <h1>{{ _("Confirm your email address") }}</h1>

templates/zerver/app/index.html~L226

             <div class="alert-zulip-logo">
                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 773.12 773.12">
                     <circle cx="386.56" cy="386.56" r="386.56" />
-                    <path
-                        d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z"
-                    />
+                    <path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" />
                 </svg>
             </div>
             <div class="loading-indicator"></div>

templates/zerver/app/index.html~L265

                             <div class="bottom-messages-logo">
                                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 773.12 773.12">
                                     <circle cx="386.56" cy="386.56" r="386.56" />
-                                    <path
-                                        d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z"
-                                    />
+                                    <path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" />
                                 </svg>
                             </div>
                             <div id="recent_view_loading_messages_indicator"></div>

templates/zerver/app/index.html~L293

                             <div class="top-messages-logo">
                                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 773.12 773.12">
                                     <circle cx="386.56" cy="386.56" r="386.56" />
-                                    <path
-                                        d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z"
-                                    />
+                                    <path d="M566.66 527.25c0 33.03-24.23 60.05-53.84 60.05H260.29c-29.61 0-53.84-27.02-53.84-60.05 0-20.22 9.09-38.2 22.93-49.09l134.37-120c2.5-2.14 5.74 1.31 3.94 4.19l-49.29 98.69c-1.38 2.76.41 6.16 3.25 6.16h191.18c29.61 0 53.83 27.03 53.83 60.05zm0-281.39c0 20.22-9.09 38.2-22.93 49.09l-134.37 120c-2.5 2.14-5.74-1.31-3.94-4.19l49.29-98.69c1.38-2.76-.41-6.16-3.25-6.16H260.29c-29.61 0-53.84-27.02-53.84-60.05s24.23-60.05 53.84-60.05h252.54c29.61 0 53.83 27.02 53.83 60.05z" />
                                 </svg>
                             </div>
                             <div id="loading_older_messages_indicator"></div>

templates/zerver/documentation_main.html~L7

 {% endblock %}
 
 {% block portico_content %}
-    <div
-        class="app help terms-page inline-block{% if page_is_help_center %} help-center{% endif %}{% if page_is_api_center %} api-center{% endif %}"
-    >
+    <div class="app help terms-page inline-block{% if page_is_help_center %} help-center{% endif %}{% if page_is_api_center %} api-center{% endif %}">
         <div class="sidebar">
             <div class="content">
                 {% if not page_is_policy_center %}

templates/zerver/documentation_main.html~L35

             xmlns="http://www.w3.org/2000/svg"
             xmlns:xlink="http://www.w3.org/1999/xlink"
         >
-            <path
-                d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2  s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2  S29.104,22,28,22z"
-            />
+            <path d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2  s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2  S29.104,22,28,22z" />
         </svg>
 
         <div class="markdown">

templates/zerver/realm_creation_form.html~L1

-<div
-    class="realm-creation-editable-inputs {% if user_registration_form and not form.realm_subdomain.errors %}hide{% endif %}"
->
+<div class="realm-creation-editable-inputs {% if user_registration_form and not form.realm_subdomain.errors %}hide{% endif %}">
     <div class="input-box">
         <div class="inline-block relative">
             <input

sissbruecker/linkding (+3 -9 lines across 2 files)

bookmarks/templates/settings/general.html~L45

                         Whether to show bookmark descriptions and tags in the same line, or as separate blocks.
                     </div>
                 </div>
-                <div
-                    class="form-group {% if request.user_profile.bookmark_description_display == 'inline' %}d-hide{% endif %}"
-                >
+                <div class="form-group {% if request.user_profile.bookmark_description_display == 'inline' %}d-hide{% endif %}">
                     <label for="{{ form.bookmark_description_max_lines.id_for_label }}" class="form-label"
                     >Bookmark description max lines</label>
                     {{ form.bookmark_description_max_lines|add_class:"form-input width-25 width-sm-100" }}

bookmarks/templates/settings/nav.html~L3

 {% url 'bookmarks:settings.integrations' as integrations_url %}
 
 <ul class="tab tab-block">
-    <li
-        class="tab-item {% if request.get_full_path == index_url or request.get_full_path == general_url%}active{% endif %}"
-    >
+    <li class="tab-item {% if request.get_full_path == index_url or request.get_full_path == general_url%}active{% endif %}">
         <a href="{% url 'bookmarks:settings.general' %}">General</a>
     </li>
     <li class="tab-item {% if request.get_full_path == integrations_url %}active{% endif %}">

bookmarks/templates/settings/nav.html~L22

                     class="ml-1"
                     style="width: 1.2em; height: 1.2em; vertical-align: -0.2em"
                 >
-                    <path
-                        d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"
-                    />
+                    <path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z" />
                     <path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z" />
                 </svg>
             </a>

saleor/saleor (+138 -414 lines across 20 files)

djangofmt (excluding templates/home/index.html)

saleor/plugins/admin_email/default_email_templates/export_failed.html~L98

                 >
                     <tbody>
                         <tr>
-                            <td
-                                style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center"
-                            >
+                            <td style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center">
                                 <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:540px;" width="540" bgcolor="white" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
 
-                                <div
-                                    style="background: white; background-color: white; margin: 0px auto; max-width: 540px"
-                                >
+                                <div style="background: white; background-color: white; margin: 0px auto; max-width: 540px">
                                     <table
                                         align="center"
                                         border="0"

saleor/plugins/admin_email/default_email_templates/export_failed.html~L116

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center"
-                                                >
+                                                <td style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:538px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/export_failed.html~L167

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 4px #056dff;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/export_failed.html~L182

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-top: 16px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Hello,
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/export_failed.html~L195

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Sorry, we couldn't finish exporting
                                                                             {{ data_type }} due to unexpected errors.
                                                                             Please try again.

saleor/plugins/admin_email/default_email_templates/export_failed.html~L210

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Our appolgies and thank you.
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/export_failed.html~L241

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center"
-                                                >
+                                                <td style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:540px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/export_failed.html~L264

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93">
                                                                             This is an automatically generated e-mail,
                                                                             please do not reply. <br>Certain messages,
                                                                             like this one, are essential to service

saleor/plugins/admin_email/default_email_templates/export_success.html~L98

                 >
                     <tbody>
                         <tr>
-                            <td
-                                style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center"
-                            >
+                            <td style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center">
                                 <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:540px;" width="540" bgcolor="white" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
 
-                                <div
-                                    style="background: white; background-color: white; margin: 0px auto; max-width: 540px"
-                                >
+                                <div style="background: white; background-color: white; margin: 0px auto; max-width: 540px">
                                     <table
                                         align="center"
                                         border="0"

saleor/plugins/admin_email/default_email_templates/export_success.html~L116

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center"
-                                                >
+                                                <td style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:538px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/export_success.html~L167

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 4px #056dff;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/export_success.html~L182

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-top: 16px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Hello,
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/export_success.html~L195

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             We're happy to let you know that your file
                                                                             with {{ data_type }} data is ready to
                                                                             download.

saleor/plugins/admin_email/default_email_templates/export_success.html~L210

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             To download your {{ data_type }} data,
                                                                             simply click the button below.
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/export_success.html~L260

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Have a great day and thank you!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/export_success.html~L291

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center"
-                                                >
+                                                <td style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:540px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/export_success.html~L314

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93">
                                                                             This is an automatically generated e-mail,
                                                                             please do not reply. <br>Certain messages,
                                                                             like this one, are essential to service

saleor/plugins/admin_email/default_email_templates/password_reset.html~L98

                 >
                     <tbody>
                         <tr>
-                            <td
-                                style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center"
-                            >
+                            <td style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center">
                                 <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:540px;" width="540" bgcolor="white" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
 
-                                <div
-                                    style="background: white; background-color: white; margin: 0px auto; max-width: 540px"
-                                >
+                                <div style="background: white; background-color: white; margin: 0px auto; max-width: 540px">
                                     <table
                                         align="center"
                                         border="0"

saleor/plugins/admin_email/default_email_templates/password_reset.html~L116

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center"
-                                                >
+                                                <td style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:538px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/password_reset.html~L167

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 4px #056dff;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/password_reset.html~L182

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-top: 16px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Hello there!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/password_reset.html~L195

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             We received your dashboard password reset
                                                                             request.
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/password_reset.html~L209

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             To reset your password, simply click the
                                                                             “Reset my password” button below.
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/password_reset.html~L259

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             This link expires in 24 hours. If you miss
                                                                             the window, please reset your password
                                                                             again.

saleor/plugins/admin_email/default_email_templates/password_reset.html~L274

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Didn&apos;t request a reset? Ignore this
                                                                             message (or reply to let us know).
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/password_reset.html~L288

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Thank you!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/password_reset.html~L319

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center"
-                                                >
+                                                <td style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:540px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/password_reset.html~L342

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93">
                                                                             This is an automatically generated e-mail,
                                                                             please do not reply. <br>Certain messages,
                                                                             like this one, are essential to service

saleor/plugins/admin_email/default_email_templates/set_password.html~L98

                 >
                     <tbody>
                         <tr>
-                            <td
-                                style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center"
-                            >
+                            <td style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center">
                                 <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:540px;" width="540" bgcolor="white" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
 
-                                <div
-                                    style="background: white; background-color: white; margin: 0px auto; max-width: 540px"
-                                >
+                                <div style="background: white; background-color: white; margin: 0px auto; max-width: 540px">
                                     <table
                                         align="center"
                                         border="0"

saleor/plugins/admin_email/default_email_templates/set_password.html~L116

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center"
-                                                >
+                                                <td style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:538px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/set_password.html~L167

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 4px #056dff;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/set_password.html~L182

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-top: 16px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Hello there!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/set_password.html~L195

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             You received this e-mail because you have to
                                                                             set password for your dashboard user
                                                                             account.

saleor/plugins/admin_email/default_email_templates/set_password.html~L210

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             To set up your password, simply click the
                                                                             “Set my password” button below.
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/set_password.html~L260

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Thank you!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/set_password.html~L291

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center"
-                                                >
+                                                <td style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:540px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/set_password.html~L314

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93">
                                                                             This is an automatically generated e-mail,
                                                                             please do not reply. <br>Certain messages,
                                                                             like this one, are essential to service

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L98

                 >
                     <tbody>
                         <tr>
-                            <td
-                                style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center"
-                            >
+                            <td style="border: 0; direction: ltr; font-size: 0px; padding: 50px 30px; text-align: center">
                                 <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:540px;" width="540" bgcolor="white" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
 
-                                <div
-                                    style="background: white; background-color: white; margin: 0px auto; max-width: 540px"
-                                >
+                                <div style="background: white; background-color: white; margin: 0px auto; max-width: 540px">
                                     <table
                                         align="center"
                                         border="0"

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L116

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center"
-                                                >
+                                                <td style="border: 1px solid secondaryColor; direction: ltr; font-size: 0px; padding: 1rem 0.5rem; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:538px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L167

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: solid 4px #056dff; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 4px #056dff;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L182

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-top: 16px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 1.4rem; font-weight: bold; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             New order just came in! 🎉
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L195

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; padding-bottom: 10px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Someone placed a new order in your store.
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L208

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             To see order details please click the button
                                                                             "See order" below.
                                                                         </div>

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L412

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <p
-                                                                            style="border-top: dashed 1px #d3d1d0; font-size: 1px; margin: 0px auto; width: 100%"
-                                                                        >
+                                                                        <p style="border-top: dashed 1px #d3d1d0; font-size: 1px; margin: 0px auto; width: 100%">
                                                                         </p>
 
                                                                         <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:dashed 1px #D3D1D0;font-size:1px;margin:0px auto;width:488px;" role="presentation" width="488px" ><tr><td style="height:0;line-height:0;"> &nbsp;

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L488

                                                                         align="left"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 14px; line-height: 1.5rem; text-align: left; color: #28234a">
                                                                             Have a great day!
                                                                         </div>
                                                                     </td>

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L519

                                     >
                                         <tbody>
                                             <tr>
-                                                <td
-                                                    style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center"
-                                                >
+                                                <td style="direction: ltr; font-size: 0px; padding: 20px 0; text-align: center">
                                                     <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:540px;" ><![endif]-->
 
                                                     <div

saleor/plugins/admin_email/default_email_templates/staff_confirm_order.html~L542

                                                                         align="center"
                                                                         style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                                     >
-                                                                        <div
-                                                                            style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93"
-                                                                        >
+                                                                        <div style="font-family: Helvetica, Arial; font-size: 10px; line-height: 1.2rem; text-align: center; color: #7f7b93">
                                                                             This is an automatically generated e-mail,
                                                                             please do not reply. <br>Certain messages,
                                                                             like this one, are essential to service

saleor/plugins/user_email/default_email_templates/account_delete.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/account_delete.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     You're receiving this e-mail because you or someone else has
                                                     requested a deletion of your user account at {{ site_name }}.<br>
                                                     Click the link below to delete your account. Please note that this

saleor/plugins/user_email/default_email_templates/account_delete.html~L159

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{ delete_url }}">{{ delete_url }}</a>
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/account_delete.html~L236

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/account_delete.html~L313

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/account_delete.html~L390

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/confirm.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     In order to log into {{ site_name }}, you have to confirm your email
                                                     address first. Please click the link below to do so and log into
                                                     your account.

saleor/plugins/user_email/default_email_templates/confirm.html~L158

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{ confirm_url }}">
                                                         {{ confirm_url }}
                                                     </a>

saleor/plugins/user_email/default_email_templates/confirm.html~L237

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm.html~L314

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm.html~L391

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order.order_details_url }}
                                                     Thank you for your order. Below is the list of fulfilled products.
                                                     To see your order details please visit:

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L176

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if digital_lines }}
                                                     You can download your digital products by clicking in download
                                                     link(s).

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L256

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if physical_lines }}
                                                     <table style="width: 100%">
                                                         <thead

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L422

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L499

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_fulfillment.html~L576

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/confirm_order.html~L117

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                         Hi!
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirm_order.html~L130

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order.order_details_url }}
                                                         Thank you for your order. Below is the list of ordered products.
                                                         To see your payment details please visit: <a

saleor/plugins/user_email/default_email_templates/confirm_order.html~L471

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         This is an automatically generated e-mail, please do not reply.
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirm_order.html~L526

                                                     align="center"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                         Sincerely, {{ site_name }}
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirm_order.html~L581

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order }}
                                                         <script type="application/ld+json">
                                                         {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/confirm_payment.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_payment.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     Thank you for your payment. Your payment was successfully processed.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_payment.html~L220

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_payment.html~L297

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/confirm_payment.html~L374

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/confirmed_order.html~L117

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                         Hi!
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirmed_order.html~L130

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order.order_details_url }}
                                                         Your order has been confirmed by staff. To see your order
                                                         details please visit:

saleor/plugins/user_email/default_email_templates/confirmed_order.html~L473

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         This is an automatically generated e-mail, please do not reply.
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirmed_order.html~L528

                                                     align="center"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                         Sincerely, {{ site_name }}
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/confirmed_order.html~L583

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order }}
                                                         <script type="application/ld+json">
                                                         {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/email_changed_notification.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/email_changed_notification.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     You're receiving this e-mail because you or someone else has changed
                                                     email for your user account at {{ site_name }}.<br>
                                                     If you didn't request this change, please contact the administrator.

saleor/plugins/user_email/default_email_templates/email_changed_notification.html~L222

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/email_changed_notification.html~L299

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/email_changed_notification.html~L376

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/gift_card.html~L123

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if user.first_name }}
                                                         Hi, {{ user.first_name }}
                                                         {{ user.last_name }}<br>

saleor/plugins/user_email/default_email_templates/gift_card.html~L142

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ gift_card.currency }}
                                                         {{ gift_card.balance }}<br>
                                                         Gift card code: {{ gift_card.code }}<br>

saleor/plugins/user_email/default_email_templates/gift_card.html~L157

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         Use this card as payment for anything you like in
                                                         {{ site_name }}.<br>
                                                         Enter the gift card code at checkout to redeem your gift

saleor/plugins/user_email/default_email_templates/gift_card.html~L173

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         <a href="{{ domain }}">
                                                             {{ site_name }}
                                                         </a>

saleor/plugins/user_email/default_email_templates/gift_card.html~L230

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         This is an automatically generated e-mail, please do not reply.
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/gift_card.html~L285

                                                     align="center"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                         Sincerely, {{ site_name }}
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/gift_card.html~L340

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order }}
                                                         <script type="application/ld+json">
                                                         {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/order_cancel.html~L117

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                         Hi!
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/order_cancel.html~L130

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         Your order #{{ order.number }} has been canceled.
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/order_cancel.html~L185

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         This is an automatically generated e-mail, please do not reply.
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/order_cancel.html~L240

                                                     align="center"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                         Sincerely, {{ site_name }}
                                                     </div>
                                                 </td>

saleor/plugins/user_email/default_email_templates/order_cancel.html~L295

                                                     align="left"
                                                     style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                                 >
-                                                    <div
-                                                        style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                    >
+                                                    <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                         {{ #if order }}
                                                         <script type="application/ld+json">
                                                         {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/order_refund.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/order_refund.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     A payment of {{ amount }}
                                                     {{ currency }} has been refunded for your order.
                                                 </div>

saleor/plugins/user_email/default_email_templates/order_refund.html~L221

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/order_refund.html~L298

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/order_refund.html~L375

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/password_reset.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/password_reset.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     You're receiving this e-mail because you or someone else has
                                                     requested a password for your user account at {{ site_name }}.<br>
                                                     It can be safely ignored if you did not request a password reset.

saleor/plugins/user_email/default_email_templates/password_reset.html~L159

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{reset_url}}">
                                                         {{ reset_url }}
                                                     </a>

saleor/plugins/user_email/default_email_templates/password_reset.html~L238

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/password_reset.html~L315

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/password_reset.html~L392

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/request_email_change.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/request_email_change.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     You're receiving this e-mail because you or someone else has
                                                     requested an email change for your user account at
                                                     {{ site_name }}.<br>

saleor/plugins/user_email/default_email_templates/request_email_change.html~L160

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{redirect_url}}">
                                                         {{ redirect_url }}
                                                     </a>

saleor/plugins/user_email/default_email_templates/request_email_change.html~L239

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/request_email_change.html~L316

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/request_email_change.html~L393

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/send_invoice.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/send_invoice.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     In order to download invoice {{ number }}, click the link below.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/send_invoice.html~L156

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{invoice.download_url}}">
                                                         {{ invoice.download_url }}
                                                     </a>

saleor/plugins/user_email/default_email_templates/send_invoice.html~L235

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/send_invoice.html~L312

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/send_invoice.html~L389

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     You're receiving this e-mail because you have to set password for
                                                     your customer account at {{ site_name }}.<br>
                                                     Click the link below to set up your password.

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L158

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     <a href="{{password_set_url}}">
                                                         {{ password_set_url }}
                                                     </a>

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L237

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L314

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/set_customer_password.html~L391

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L130

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1; text-align: left; color: #000000">
                                                     Hi!
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L143

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     Your shipping status has been updated. Below is the list of ordered
                                                     products that have been updated with new tracking number.
                                                     {{ #if fulfillment.tracking_number }}

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L232

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if physical_lines }}
                                                     <table style="width: 100%">
                                                         <thead

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L398

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     This is an automatically generated e-mail, please do not reply.
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L475

                                                 align="center"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: center; color: #000000">
                                                     Sincerely, {{ site_name }}
                                                 </div>
                                             </td>

saleor/plugins/user_email/default_email_templates/update_fulfillment.html~L552

                                                 align="left"
                                                 style="font-size: 0px; padding: 10px 25px; word-break: break-word"
                                             >
-                                                <div
-                                                    style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000"
-                                                >
+                                                <div style="font-family: Ubuntu, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #000000">
                                                     {{ #if order }}
                                                     <script type="application/ld+json">
                                                     {{{{raw}}}}{{schema_markup}}{{{{/raw}}}}

sissbruecker/linkding (+3 -9 lines across 2 files)

bookmarks/templates/settings/general.html~L45

                         Whether to show bookmark descriptions and tags in the same line, or as separate blocks.
                     </div>
                 </div>
-                <div
-                    class="form-group {% if request.user_profile.bookmark_description_display == 'inline' %}d-hide{% endif %}"
-                >
+                <div class="form-group {% if request.user_profile.bookmark_description_display == 'inline' %}d-hide{% endif %}">
                     <label for="{{ form.bookmark_description_max_lines.id_for_label }}" class="form-label"
                     >Bookmark description max lines</label>
                     {{ form.bookmark_description_max_lines|add_class:"form-input width-25 width-sm-100" }}

bookmarks/templates/settings/nav.html~L3

 {% url 'bookmarks:settings.integrations' as integrations_url %}
 
 <ul class="tab tab-block">
-    <li
-        class="tab-item {% if request.get_full_path == index_url or request.get_full_path == general_url%}active{% endif %}"
-    >
+    <li class="tab-item {% if request.get_full_path == index_url or request.get_full_path == general_url%}active{% endif %}">
         <a href="{% url 'bookmarks:settings.general' %}">General</a>
     </li>
     <li class="tab-item {% if request.get_full_path == integrations_url %}active{% endif %}">

bookmarks/templates/settings/nav.html~L22

                     class="ml-1"
                     style="width: 1.2em; height: 1.2em; vertical-align: -0.2em"
                 >
-                    <path
-                        d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"
-                    />
+                    <path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z" />
                     <path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z" />
                 </svg>
             </a>

wagtail/wagtail (+15 -45 lines across 8 files)

djangofmt (excluding wagtail/admin/templates/wagtailadmin/shared/icon.html wagtail/admin/templates/wagtailadmin/tables/references_cell.html)

wagtail/admin/templates/wagtailadmin/generic/revisions/compare.html~L24

                             {{ comp.htmldiff }}
                         {% elif comp.is_child_relation %}
                             {% for child_comp in comp.get_child_comparisons %}
-                                <div
-                                    class="comparison__child-object {% if child_comp.is_addition %}addition{% elif child_comp.is_deletion %}deletion{% endif %}"
-                                >
+                                <div class="comparison__child-object {% if child_comp.is_addition %}addition{% elif child_comp.is_deletion %}deletion{% endif %}">
                                     {% with child_comp.get_position_change as move %}
                                         {% if move %}
                                             <div class="help-block help-info">

wagtail/admin/templates/wagtailadmin/notifications/base.html~L57

                                     class="content"
                                 >
                                     <tr>
-                                        <td
-                                            style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000; line-height: 18px"
-                                        >
+                                        <td style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000; line-height: 18px">
                                             {% block title %}
-                                                <div
-                                                    style="font-size: 18px; line-height: 24px; color: #43b1b0; font-weight: bold; display: inline-block; width: 100%; margin-bottom: 10px"
-                                                >
+                                                <div style="font-size: 18px; line-height: 24px; color: #43b1b0; font-weight: bold; display: inline-block; width: 100%; margin-bottom: 10px">
                                                     {% block title_content %}{% endblock %}
                                                 </div>
                                             {% endblock %}

wagtail/admin/templates/wagtailadmin/shared/breadcrumbs.html~L34

                 {% icon name="breadcrumb-expand" classname="w-w-4 w-h-4" %}
             </button>
         {% endif %}
-        <div
-            class="w-relative w-h-slim-header w-mr-4 w-top-0 w-z-20 w-flex w-items-center w-flex-row w-flex-1 sm:w-flex-none w-transition w-duration-300"
-        >
+        <div class="w-relative w-h-slim-header w-mr-4 w-top-0 w-z-20 w-flex w-items-center w-flex-row w-flex-1 sm:w-flex-none w-transition w-duration-300">
             <nav class="w-flex w-items-center w-flex-row w-h-full" aria-label="{% trans 'Breadcrumb' %}">
-                <ol
-                    class="w-flex w-flex-row w-justify-start w-items-center w-h-full w-pl-0 w-my-0 w-gap-2 sm:w-gap-0 sm:w-space-x-2"
-                >
+                <ol class="w-flex w-flex-row w-justify-start w-items-center w-h-full w-pl-0 w-my-0 w-gap-2 sm:w-gap-0 sm:w-space-x-2">
                     {% block breadcrumbs_items %}
                         {% for item in items %}
                             <li

wagtail/admin/templates/wagtailadmin/shared/header.html~L16

     - `search` - An alternative search content variable displayed if provided and search_url url is not present -
     `extra_rows` - Shown at the end of the header container
 {% endcomment %}
-<header
-    class='{% classnames "w-header" classname merged|yesno:"w-header--merged," search_form|yesno:"w-header--hasform," %}'
->
+<header class='{% classnames "w-header" classname merged|yesno:"w-header--merged," search_form|yesno:"w-header--hasform," %}'>
     <div class="row">
         <div class="left">
             <div class="col">

wagtail/admin/templates/wagtailadmin/shared/headers/slim_header.html~L20

 w-rounded-[1rem]{% endfragment %}
 {# Z index 99 to ensure header is always above  #}
 <div class="w-sticky w-top-0 w-z-header">
-    <header
-        class="w-slim-header w-bg-surface-header w-border-b w-border-border-furniture w-px-0 w-py-0 w-mb-0 w-relative w-top-0 w-z-header sm:w-sticky w-min-h-slim-header"
-    >
+    <header class="w-slim-header w-bg-surface-header w-border-b w-border-border-furniture w-px-0 w-py-0 w-mb-0 w-relative w-top-0 w-z-header sm:w-sticky w-min-h-slim-header">
         <div class="w-flex w-flex-col sm:w-flex-row w-items-center w-justify-between">
             {# Padding left on mobile to give space for navigation toggle, #}
-            <div
-                class="w-pl-slim-header sm:w-pl-5 w-min-h-slim-header sm:w-pr-2 w-w-full w-flex-1 w-overflow-x-auto w-box-border"
-            >
+            <div class="w-pl-slim-header sm:w-pl-5 w-min-h-slim-header sm:w-pr-2 w-w-full w-flex-1 w-overflow-x-auto w-box-border">
                 <div class="w-flex w-flex-1 w-items-center w-overflow-hidden">
                     {% block header_content %}
                         {% block title %}

wagtail/admin/templates/wagtailadmin/shared/headers/slim_header.html~L114

                 {% endif %}
             {% endblock %}
 
-            <div
-                class="w-w-full w-overflow-auto sm:w-w-min w-flex sm:w-flex-nowrap sm:w-flex-row w-items-center w-p-0 sm:w-py-0 w-px-2 sm:w-pr-4 sm:w-justify-end"
-            >
+            <div class="w-w-full w-overflow-auto sm:w-w-min w-flex sm:w-flex-nowrap sm:w-flex-row w-items-center w-p-0 sm:w-py-0 w-px-2 sm:w-pr-4 sm:w-justify-end">
                 {% block editing_sessions %}
                     {% if editing_sessions %}
                         {% component editing_sessions %}

wagtail/admin/templates/wagtailadmin/shared/side_panels/includes/status/workflow.html~L119

 
         {# Scheduled publishing #}
         {% if has_draft_publishing_schedule or schedule_has_errors %}
-            <div
-                class="w-p-4 w-rounded w-flex w-space-x-3 w-border w-border-transparent {% if schedule_has_errors %}w-bg-critical-50{% else %}w-bg-info-50{% endif %}"
-            >
+            <div class="w-p-4 w-rounded w-flex w-space-x-3 w-border w-border-transparent {% if schedule_has_errors %}w-bg-critical-50{% else %}w-bg-info-50{% endif %}">
                 {% if schedule_has_errors %}
                     {% icon name='warning' classname='w-w-4 w-h-4 w-text-critical-100' %}
                 {% elif scheduled_go_live_at or scheduled_expire_at %}

wagtail/project_template/home/templates/home/welcome_page.html~L12

                     d="M84 1.9v5.7s-10.2-3.8-16.8 3.1c-4.8 5-5.2 10.6-3 18.1 21.6 0 25 12.1 25 12.1L87 27l6.8-8.3c0-9.8-8.1-16.3-9.8-16.8z"
                 />
                 <circle cx="85.9" cy="15.9" r="2.6" />
-                <path
-                    d="M89.2 40.9s-3.3-16.6-24.9-12.1c-2.2-7.5-1.8-13 3-18.1C73.8 3.8 84 7.6 84 7.6V1.9C80.4.3 77 0 73.2 0 59.3 0 51.6 10.4 48.3 17.4L9.2 89.3l11-2.1-20.2 39 14.1-2.5L24.9 93c30.6 0 69.8-11 64.3-52.1z"
-                />
+                <path d="M89.2 40.9s-3.3-16.6-24.9-12.1c-2.2-7.5-1.8-13 3-18.1C73.8 3.8 84 7.6 84 7.6V1.9C80.4.3 77 0 73.2 0 59.3 0 51.6 10.4 48.3 17.4L9.2 89.3l11-2.1-20.2 39 14.1-2.5L24.9 93c30.6 0 69.8-11 64.3-52.1z" />
                 <path d="M102.4 27l-8.6-8.3L87 27z" />
                 <path
                     fill="#FFF"
                     d="M30 84.1s1-.2 2.8-.6c1.8-.4 4.3-1 7.3-1.8 1.5-.4 3.1-.9 4.8-1.5 1.7-.6 3.5-1.2 5.2-2 1.8-.7 3.6-1.6 5.4-2.6 1.8-1 3.5-2.1 5.1-3.4.4-.3.8-.6 1.2-1l1.2-1c.7-.7 1.5-1.4 2.2-2.2.7-.7 1.3-1.5 1.9-2.3l.9-1.2.4-.6.4-.6c.2-.4.5-.8.7-1.2.2-.4.4-.8.7-1.2l.3-.6.3-.6c.2-.4.4-.8.5-1.2l.9-2.4c.2-.8.5-1.6.7-2.3.2-.7.3-1.5.5-2.1.1-.7.2-1.3.3-2 .1-.6.2-1.2.2-1.7.1-.5.1-1 .2-1.5.1-1.8.1-2.8.1-2.8l1.6.1s-.1 1.1-.2 2.9c-.1.5-.1 1-.2 1.5-.1.6-.1 1.2-.3 1.8-.1.6-.3 1.3-.4 2-.2.7-.4 1.4-.6 2.2-.2.8-.5 1.5-.8 2.4-.3.8-.6 1.6-1 2.5l-.6 1.2-.3.6-.3.6c-.2.4-.5.8-.7 1.3-.3.4-.5.8-.8 1.2-.1.2-.3.4-.4.6l-.4.6-.9 1.2c-.7.8-1.3 1.6-2.1 2.3-.7.8-1.5 1.4-2.3 2.2l-1.2 1c-.4.3-.8.6-1.3.9-1.7 1.2-3.5 2.3-5.3 3.3-1.8.9-3.7 1.8-5.5 2.5-1.8.7-3.6 1.3-5.3 1.8-1.7.5-3.3 1-4.9 1.3-3 .7-5.6 1.3-7.4 1.6-1.6.6-2.6.8-2.6.8z"
                 />
                 <g fill="#231F20">
-                    <path
-                        d="M127 83.9h-8.8l-12.6-36.4h7.9l9 27.5 9-27.5h7.9l9 27.5 9-27.5h7.9L153 83.9h-8.8L135.6 59 127 83.9zM200.1 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM241.7 47.5v31.7c0 6.4-1.7 11.3-5.2 14.5-3.5 3.2-8 4.8-13.4 4.8-5.5 0-10.4-1.7-14.8-5.1l3.6-5.8c3.6 2.7 7.1 4 10.8 4 3.6 0 6.5-.9 8.6-2.8 2.1-1.9 3.2-4.9 3.2-9v-4.7c-1.1 2.1-2.8 3.9-4.9 5.1-2.1 1.3-4.5 1.9-7.1 1.9-4.8 0-8.8-1.7-11.9-5.1-3.1-3.4-4.7-7.6-4.7-12.6s1.6-9.2 4.7-12.6c3.1-3.4 7.1-5.1 11.9-5.1 4.8 0 8.7 2 11.7 6v-5.4h7.5zm-28.4 16.8c0 3 .9 5.6 2.8 7.7 1.8 2.2 4.3 3.2 7.5 3.2 3.1 0 5.7-1 7.6-3.1 1.9-2.1 2.9-4.7 2.9-7.8 0-3.1-1-5.8-2.9-7.9-2-2.2-4.5-3.2-7.6-3.2-3.1 0-5.6 1.1-7.4 3.4-2 2.1-2.9 4.7-2.9 7.7zM260.9 53.6v18.5c0 1.7.5 3.1 1.4 4.1.9 1 2.2 1.5 3.8 1.5 1.6 0 3.2-.8 4.7-2.4l3.1 5.4c-2.7 2.4-5.7 3.6-8.9 3.6-3.3 0-6-1.1-8.3-3.4-2.3-2.3-3.5-5.3-3.5-9.1V53.6h-4.6v-6.2h4.6V36.1h7.7v11.4h9.6v6.2h-9.6zM309.5 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM319.3 40.2c-1-1-1.4-2.1-1.4-3.4 0-1.3.5-2.5 1.4-3.4 1-1 2.1-1.4 3.4-1.4 1.3 0 2.5.5 3.4 1.4 1 1 1.4 2.1 1.4 3.4 0 1.3-.5 2.5-1.4 3.4s-2.1 1.4-3.4 1.4c-1.3.1-2.4-.4-3.4-1.4zm7.2 43.7h-7.7V47.5h7.7v36.4zM342.5 83.9h-7.7V33.1h7.7v50.8z"
-                    />
+                    <path d="M127 83.9h-8.8l-12.6-36.4h7.9l9 27.5 9-27.5h7.9l9 27.5 9-27.5h7.9L153 83.9h-8.8L135.6 59 127 83.9zM200.1 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM241.7 47.5v31.7c0 6.4-1.7 11.3-5.2 14.5-3.5 3.2-8 4.8-13.4 4.8-5.5 0-10.4-1.7-14.8-5.1l3.6-5.8c3.6 2.7 7.1 4 10.8 4 3.6 0 6.5-.9 8.6-2.8 2.1-1.9 3.2-4.9 3.2-9v-4.7c-1.1 2.1-2.8 3.9-4.9 5.1-2.1 1.3-4.5 1.9-7.1 1.9-4.8 0-8.8-1.7-11.9-5.1-3.1-3.4-4.7-7.6-4.7-12.6s1.6-9.2 4.7-12.6c3.1-3.4 7.1-5.1 11.9-5.1 4.8 0 8.7 2 11.7 6v-5.4h7.5zm-28.4 16.8c0 3 .9 5.6 2.8 7.7 1.8 2.2 4.3 3.2 7.5 3.2 3.1 0 5.7-1 7.6-3.1 1.9-2.1 2.9-4.7 2.9-7.8 0-3.1-1-5.8-2.9-7.9-2-2.2-4.5-3.2-7.6-3.2-3.1 0-5.6 1.1-7.4 3.4-2 2.1-2.9 4.7-2.9 7.7zM260.9 53.6v18.5c0 1.7.5 3.1 1.4 4.1.9 1 2.2 1.5 3.8 1.5 1.6 0 3.2-.8 4.7-2.4l3.1 5.4c-2.7 2.4-5.7 3.6-8.9 3.6-3.3 0-6-1.1-8.3-3.4-2.3-2.3-3.5-5.3-3.5-9.1V53.6h-4.6v-6.2h4.6V36.1h7.7v11.4h9.6v6.2h-9.6zM309.5 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM319.3 40.2c-1-1-1.4-2.1-1.4-3.4 0-1.3.5-2.5 1.4-3.4 1-1 2.1-1.4 3.4-1.4 1.3 0 2.5.5 3.4 1.4 1 1 1.4 2.1 1.4 3.4 0 1.3-.5 2.5-1.4 3.4s-2.1 1.4-3.4 1.4c-1.3.1-2.4-.4-3.4-1.4zm7.2 43.7h-7.7V47.5h7.7v36.4zM342.5 83.9h-7.7V33.1h7.7v50.8z" />
                 </g>
             </svg>
         </a>

wagtail/project_template/home/templates/home/welcome_page.html~L67

         href="{% templatetag openblock %} wagtail_documentation_path {% templatetag closeblock %}/"
     >
         <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true">
-            <path
-                d="M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7zm2.9 11.1l-.9.6V16h-4v-2.3l-.9-.6C7.8 12.2 7 10.6 7 9c0-2.8 2.2-5 5-5s5 2.2 5 5c0 1.6-.8 3.2-2.1 4.1z"
-            />
+            <path d="M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7zm2.9 11.1l-.9.6V16h-4v-2.3l-.9-.6C7.8 12.2 7 10.6 7 9c0-2.8 2.2-5 5-5s5 2.2 5 5c0 1.6-.8 3.2-2.1 4.1z" />
         </svg>
         <div>
             <h2>

wagtail/project_template/home/templates/home/welcome_page.html~L103

     >
         <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true">
             <path d="M0 0h24v24H0z" fill="none" />
-            <path
-                d="M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"
-            />
+            <path d="M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" />
         </svg>
         <div>
             <h2>

wagtail/project_template/project_name/templates/base.html~L44

         {% templatetag openblock %} endblock {% templatetag closeblock %}
     </head>
 
-    <body
-        class="{% templatetag openblock %} block body_class {% templatetag closeblock %}{% templatetag openblock %} endblock {% templatetag closeblock %}"
-    >
+    <body class="{% templatetag openblock %} block body_class {% templatetag closeblock %}{% templatetag openblock %} endblock {% templatetag closeblock %}">
         {% templatetag openblock %} wagtailuserbar {% templatetag closeblock %}
 
         {% templatetag openblock %} block content {% templatetag closeblock %}

@g-plane
Copy link
Owner

g-plane commented Feb 3, 2025

I changed my mind. Let's do it directly without adding configuration option.

@UnknownPlatypus UnknownPlatypus force-pushed the experiment/single-attr-nowrap branch from 08cbff5 to 816e955 Compare February 3, 2025 21:54
@UnknownPlatypus
Copy link
Contributor Author

@g-plane I've rebase the MR to remove the configuration option (I still have the code in case you change your mind on the option thing).

I thinks it's ready for review

@g-plane
Copy link
Owner

g-plane commented Feb 5, 2025

Should we format into multi lines when there're line breaks in an attribute?

@UnknownPlatypus
Copy link
Contributor Author

Should we format into multi lines when there're line breaks in an attribute?

Great question, It might be a good idea. I did encountered this kind of issue when the single attribute was a JinjaTag / JinjaBlock and that's why I added this conditional.

Without it I had some weird formattings like this:

-<details {% if category %}open{% endif %}>
+<details {% if category %}
+  open
+{% endif %}>

-<tr
-  {% if targeted_fooo and not foo_bar_bar_bar == mykey %}
-    class="collapse"
-  {% endif %}
->
+<tr {% if targeted_fooo and not foo_bar_bar_bar == mykey %}
+  class="collapse"
+{% endif %}>

I think this is probably true for the general case, this current diff in the snapshot is not really better:

-<article
-  class="
-    foo
-    bar
-    baz
-  "
->
-</article>
+<article class="
+  foo
+  bar
+  baz
+">
+</article>

I suppose it's more predictable to format into multi lines in this case.

@UnknownPlatypus
Copy link
Contributor Author

UnknownPlatypus commented Feb 8, 2025

@g-plane I tried to solve this in my last commit but it's not totally working yet, I get an instability error for some style attr. I suppose it's because the style attr could get his newlines removed during formatting later, which breaks the initial assumption.

I think this version converge in two pass but should be stable then.

Any idea on how to solve that ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants