diff --git a/src/includes/base.liquid b/src/includes/base.liquid
index 223a5ee2..78fad6ed 100644
--- a/src/includes/base.liquid
+++ b/src/includes/base.liquid
@@ -85,6 +85,7 @@
{%- assign genreArtist = genre.artists | shuffleArray | first -%}
{%- assign ogImage = globals.cdn_url | append: genreArtist.grid.image -%}
{%- endcase -%}
+{%- assign escapedPageDescription = pageDescription | escape -%}
@@ -97,8 +98,8 @@
-
-
+
+
@@ -127,7 +128,7 @@
"@id": "{{ globals.url }}#website",
"url": "{{ globals.url }}",
"name": "{{ pageTitle }}",
- "description": "{{ pageDescription | escape }}",
+ "description": "{{ escapedPageDescription }}",
"inLanguage": "{{ globals.locale }}"
},
{%- if schema == 'blog' -%}
@@ -137,7 +138,7 @@
"isPartOf": { "@id": "{{ globals.url }}#website" },
"@id": "{{ fullUrl }}",
"headline": "{{ pageTitle }}",
- "description": "{{ pageDescription | escape }}",
+ "description": "{{ escapedPageDescription }}",
"image": "{{ image | default: globals.meta_data.opengraph_default }}",
"inLanguage": "{{ globals.locale }}",
"publisher": { "@type": "{{ globals.site_type }}", "name": "{{ globals.author }}", "url": "{{ globals.url }}" },