Activate the custom parser.

This commit is contained in:
Jessica Canady 2024-07-30 11:48:20 -04:00
parent 1bf44f3344
commit f7c9ad7da9
Signed by: phoenix
SSH key fingerprint: SHA256:aaLOzOrLi+0n4eDZNQKH97PehwRt6KSE5fYJc+ZRKCQ

View file

@ -3,10 +3,10 @@ defmodule JOL.Blog do
alias JOL.Blog.Parser
use NimblePublisher,
build: Post,
build: JOL.Blog.Post,
from: Application.app_dir(:jol, "priv/posts/**/*.md"),
parser: Parser,
as: :posts
as: :posts,
@posts Enum.sort_by(@posts, & &1.date, {:desc, Date})
@tags @posts |> Enum.flat_map(& &1.tags) |> Enum.uniq() |> Enum.sort()