alfredbaudisch / pardall_markdown

Reactive publishing framework, filesystem-based with support for Markdown, nested hierarchies, and instant content rebuilding. Written in Elixir.
Apache License 2.0
115 stars 7 forks source link

Taxonomy overridden titles are being saved into the taxonomy Link itself, but not inside a Post's :taxonomy #24

Closed alfredbaudisch closed 3 years ago

alfredbaudisch commented 3 years ago
/documentation
_index.md -> title: "Docs"

Accessing the "Docs" taxonomy via its own slug or via an inner taxonomy gets the overridden title: image

Whereas getting it via a post slug, the title is not overridden: image

alfredbaudisch commented 3 years ago

Another example when accessing the Post :taxonomies directly: image

"Documentation" should be "Docs", because it's overridden by the taxonomy _index.md:

%{
    title: "Docs",
    sort_by: :position,
    sort_order: :asc
}
---