From 7cea137bf4f74f511851e9362efc83b3b50c0633 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Fri, 24 Apr 2020 14:49:45 +0800 Subject: [PATCH] Fixed special characters in URL. --- _includes/trending-tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/trending-tags.html b/_includes/trending-tags.html index 4b0c367..5983ec9 100644 --- a/_includes/trending-tags.html +++ b/_includes/trending-tags.html @@ -20,7 +20,7 @@ {% for trend in trends %} {% assign count = count | plus: 1 %} {% assign tag = trend | split: ":" | last %} - {{ tag | replace: '-', ' ' }} + {{ tag | replace: '-', ' ' }} {% if count >= MAX %} {% break %} {% endif %}