From 6ed757b81bdb92ba9923bfe77236eb5be69c28d8 Mon Sep 17 00:00:00 2001 From: Raymon Zutekouw <40148684+Raymonzut@users.noreply.github.com> Date: Tue, 23 Nov 2021 11:09:58 +0100 Subject: [PATCH] Keep `:` between hours, minutes, seconds --- client/gen.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gen.exs b/client/gen.exs index f5f50a5..700dcc0 100644 --- a/client/gen.exs +++ b/client/gen.exs @@ -59,7 +59,7 @@ post_contents_org = %{ (String.slice(head, 2..-1) |> String.downcase() |> String.to_atom()) => - String.slice(Enum.join(tail, ""), 1..-1) + String.slice(Enum.join(tail, ":"), 1..-1) } end) |> Enum.reduce(%{:content => File.read!("./posts_org/" <> &1 <> ".html")}, fn x, acc ->