Make Blog Tags case insensitive

This commit is contained in:
prototypa
2022-12-24 09:13:04 -05:00
parent b9b734adc7
commit 0b58f53e09
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ const { tags, class: className = 'text-sm' } = Astro.props;
tags && Array.isArray(tags) && (
<ul class={className}>
{tags.map((tag) => (
<li class="bg-gray-100 dark:bg-slate-700 inline-block mr-2 mb-2 py-0.5 px-2">
<li class="bg-gray-100 dark:bg-slate-700 inline-block mr-2 mb-2 py-0.5 px-2 lowercase">
<a href={getPermalink(tag, 'tag')}>{tag}</a>
</li>
))}

View File

@ -20,7 +20,7 @@ export async function getStaticPaths({ paginate }) {
return Array.from(tags).map((tag) =>
paginate(
posts.filter((post) => Array.isArray(post.tags) && post.tags.includes(tag)),
posts.filter((post) => Array.isArray(post.tags) && post.tags.find((elem) => elem.toLowerCase() === tag)),
{
params: { tag: cleanSlug(tag), tags: TAG_BASE || undefined },
pageSize: BLOG.postsPerPage,