diff --git a/shopify.module b/shopify.module
index 9f7dfd2..231f800 100644
--- a/shopify.module
+++ b/shopify.module
@@ -557,7 +557,7 @@ function shopify_collection_create(\stdClass $collection, $sync_products = FALSE
     'name' => $collection->title,
     'description' => [
       'value' => $collection->body_html,
-      'format' => 'full_html',
+      'format' => filter_default_format(),
     ],
     'field_shopify_collection_id' => $collection->id,
     'field_shopify_collection_pub' => $date ? $date : 0,
@@ -641,7 +641,7 @@ function shopify_collection_update(\stdClass $collection, $sync_products = FALSE
     $term->name = $collection->title;
     $term->description = [
       'value' => $collection->body_html,
-      'format' => 'full_html',
+      'format' => filter_default_format(),
     ];
     $date = strtotime($collection->published_at);
     $term->field_shopify_collection_pub = $date ? $date : 0;
diff --git a/src/Entity/ShopifyProduct.php b/src/Entity/ShopifyProduct.php
index 430b9e5..80af107 100644
--- a/src/Entity/ShopifyProduct.php
+++ b/src/Entity/ShopifyProduct.php
@@ -81,7 +81,7 @@ class ShopifyProduct extends ContentEntityBase implements ShopifyProductInterfac
 
     $values['body_html'] = [
       'value' => $values['body_html'],
-      'format' => 'full_html',
+      'format' => filter_default_format(),
     ];
 
     // Format timestamps properly.
