From 296912f8661ce0c5a07b77affb3f71cdb547f86b Mon Sep 17 00:00:00 2001 From: "byte[]" Date: Wed, 22 Jul 2020 10:39:16 -0400 Subject: [PATCH] remove more zero width characters from tag names --- lib/philomena/tags/tag.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/philomena/tags/tag.ex b/lib/philomena/tags/tag.ex index d353d635..e1f5a026 100644 --- a/lib/philomena/tags/tag.ex +++ b/lib/philomena/tags/tag.ex @@ -169,7 +169,7 @@ defmodule Philomena.Tags.Tag do # with ascii quotes, trim space from end name |> String.downcase() - |> String.replace(~r/[[:space:]|\x{200c}]+/u, " ") + |> String.replace(~r/[[:space:]|\x{200b}|\x{200c}|\x{200d}]+/u, " ") |> String.replace(~r/[\x{00b4}\x{2018}\x{2019}\x{201a}\x{201b}\x{2032}]/u, "'") |> String.replace(~r/[\x{201c}\x{201d}\x{201e}\x{201f}\x{2033}]/u, "\"") |> String.trim()