Skip to content

Commit bbc702d

Browse files
authored
fix!: improve slug generation (#51)
- will not remove periods from the permalink - will turn underscores into dashes - day and month will be padded with 0
1 parent b4e15e2 commit bbc702d

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

lib/tableau/extensions/page_extension/pages/page.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ defmodule Tableau.PageExtension.Pages.Page do
5050
path
5151
|> String.replace(Map.keys(vars), &to_string(Map.fetch!(vars, &1)))
5252
|> String.replace(" ", "-")
53-
|> String.replace(~r/[^[:alnum:]\/\-]/, "")
53+
|> String.replace("_", "-")
54+
|> String.replace(~r/[^[:alnum:]\/\-.]/, "")
5455
|> String.downcase()
5556
end
5657
end

lib/tableau/extensions/post_extension/posts/post.ex

+4-3
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,16 @@ defmodule Tableau.PostExtension.Posts.Post do
5151
attrs
5252
|> Map.new(fn {k, v} -> {":#{k}", v} end)
5353
|> Map.merge(%{
54-
":day" => attrs.date.day,
55-
":month" => attrs.date.month,
54+
":day" => attrs.date.day |> to_string() |> String.pad_leading(2, "0"),
55+
":month" => attrs.date.month |> to_string() |> String.pad_leading(2, "0"),
5656
":year" => attrs.date.year
5757
})
5858

5959
path
6060
|> String.replace(Map.keys(vars), &to_string(Map.fetch!(vars, &1)))
6161
|> String.replace(" ", "-")
62-
|> String.replace(~r/[^[:alnum:]\/\-]/, "")
62+
|> String.replace("_", "-")
63+
|> String.replace(~r/[^[:alnum:]\/\-.]/, "")
6364
|> String.downcase()
6465
end
6566
end

test/tableau/extensions/post_extension/posts/post_test.exs

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ defmodule Tableau.PostExtension.Posts.PostTest do
2626
Post.build(
2727
"some/file/name.md",
2828
%{
29-
title: "foo man chu",
29+
title: "foo man chu_foo.js",
3030
type: "articles",
3131
permalink: "/:year/:month/:day/:title",
3232
layout: Some.Layout,
33-
date: "2023-10-31 00:01:00"
33+
date: "2023-02-01 00:01:00"
3434
},
3535
"hi"
3636
)
3737

38-
assert %{permalink: "/2023/10/31/foo-man-chu"} = actual
38+
assert %{permalink: "/2023/02/01/foo-man-chu-foo.js"} = actual
3939
end
4040
end
4141
end

0 commit comments

Comments
 (0)