From b49cf0f1c4bc0b418487a944a920bf6830e9cb74 Mon Sep 17 00:00:00 2001 From: Jake Lee Date: Fri, 27 Dec 2024 11:46:00 +0000 Subject: [PATCH] Fixes search results not being URL encoded --- _includes/custom/tags.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/custom/tags.html b/_includes/custom/tags.html index bed3866..aa18b19 100644 --- a/_includes/custom/tags.html +++ b/_includes/custom/tags.html @@ -1,6 +1,6 @@ {% for tag in post.tags %} - {{ tag }}{% unless forloop.last %}, {% endunless %} + {{ tag }}{% unless forloop.last %}, {% endunless %} {% endfor %} {% for tag in page.tags %} - {{ tag }}{% unless forloop.last %}, {% endunless %} + {{ tag }}{% unless forloop.last %}, {% endunless %} {% endfor %} \ No newline at end of file