File tree 3 files changed +9
-7
lines changed
test/tableau/extensions/post_extension/posts
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ defmodule Tableau.PageExtension.Pages.Page do
50
50
path
51
51
|> String . replace ( Map . keys ( vars ) , & to_string ( Map . fetch! ( vars , & 1 ) ) )
52
52
|> String . replace ( " " , "-" )
53
- |> String . replace ( ~r/ [^[:alnum:]\/ \- ]/ , "" )
53
+ |> String . replace ( "_" , "-" )
54
+ |> String . replace ( ~r/ [^[:alnum:]\/ \- .]/ , "" )
54
55
|> String . downcase ( )
55
56
end
56
57
end
Original file line number Diff line number Diff line change @@ -51,15 +51,16 @@ defmodule Tableau.PostExtension.Posts.Post do
51
51
attrs
52
52
|> Map . new ( fn { k , v } -> { ":#{ k } " , v } end )
53
53
|> 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" ) ,
56
56
":year" => attrs . date . year
57
57
} )
58
58
59
59
path
60
60
|> String . replace ( Map . keys ( vars ) , & to_string ( Map . fetch! ( vars , & 1 ) ) )
61
61
|> String . replace ( " " , "-" )
62
- |> String . replace ( ~r/ [^[:alnum:]\/ \- ]/ , "" )
62
+ |> String . replace ( "_" , "-" )
63
+ |> String . replace ( ~r/ [^[:alnum:]\/ \- .]/ , "" )
63
64
|> String . downcase ( )
64
65
end
65
66
end
Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ defmodule Tableau.PostExtension.Posts.PostTest do
26
26
Post . build (
27
27
"some/file/name.md" ,
28
28
% {
29
- title: "foo man chu " ,
29
+ title: "foo man chu_foo.js " ,
30
30
type: "articles" ,
31
31
permalink: "/:year/:month/:day/:title" ,
32
32
layout: Some.Layout ,
33
- date: "2023-10-31 00:01:00"
33
+ date: "2023-02-01 00:01:00"
34
34
} ,
35
35
"hi"
36
36
)
37
37
38
- assert % { permalink: "/2023/10/31 /foo-man-chu" } = actual
38
+ assert % { permalink: "/2023/02/01 /foo-man-chu-foo.js " } = actual
39
39
end
40
40
end
41
41
end
You can’t perform that action at this time.
0 commit comments