diff --git a/lib/service/formatter/html.ex b/lib/service/formatter/html.ex
index 2f085780..96780267 100644
--- a/lib/service/formatter/html.ex
+++ b/lib/service/formatter/html.ex
@@ -24,5 +24,17 @@ defmodule Mobilizon.Service.Formatter.HTML do
end
end
+ @doc """
+ Inserts a space before tags closing so that words are not attached once tags stripped
+
+ `
test
next` thing becomes `test next` instead of `testnext`
+ """
+ @spec strip_tags_and_insert_spaces(String.t()) :: String.t()
+ def strip_tags_and_insert_spaces(html) do
+ html
+ |> String.replace("", " ")
+ |> strip_tags()
+ end
+
def filter_tags_for_oembed(html), do: Sanitizer.scrub(html, OEmbed)
end
diff --git a/lib/service/workers/build_search.ex b/lib/service/workers/build_search.ex
index fc51b7a7..85913aab 100644
--- a/lib/service/workers/build_search.ex
+++ b/lib/service/workers/build_search.ex
@@ -45,7 +45,7 @@ defmodule Mobilizon.Service.Workers.BuildSearch do
[
event.id,
event.title,
- HTML.strip_tags(event.description),
+ HTML.strip_tags_and_insert_spaces(event.description),
get_tags_string(event)
]
)