From 1f8d704245a9a05d7212cbed85bdab8e979b865f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 13 Oct 2024 16:39:42 -0700 Subject: [PATCH] chore: dry escape --- src/includes/base.liquid | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 }}" },