diff --git a/lib/ash_hq_web/helpers.ex b/lib/ash_hq_web/helpers.ex index 11e2ec4..7c4d9dd 100644 --- a/lib/ash_hq_web/helpers.ex +++ b/lib/ash_hq_web/helpers.ex @@ -34,7 +34,7 @@ defmodule AshHqWeb.Helpers do end def hex_link(%AshHq.Docs.Guide{route: route}, library, _library_version) do - name = route |> Path.split() |> List.last() + name = route |> Path.split() |> List.last() |> String.replace(".", "-") "https://hexdocs.pm/#{library.name}/#{name}.html" end end