Slugify not only frontmatter.title but also frontmatter.slug

This commit is contained in:
Sat Naing
2022-09-25 19:27:53 +06:30
parent e8c15931d8
commit 3f52daf865
+1 -1
View File
@@ -6,7 +6,7 @@ const slugger = GithubSlugger.slug;
export const slugifyStr = (str: string) => slugger(str); export const slugifyStr = (str: string) => slugger(str);
const slugify = (frontmatter: Frontmatter) => const slugify = (frontmatter: Frontmatter) =>
frontmatter.slug ? frontmatter.slug : slugger(frontmatter.title); frontmatter.slug ? slugger(frontmatter.slug) : slugger(frontmatter.title);
export const slufigyAll = (arr: string[]) => arr.map((str) => slugifyStr(str)); export const slufigyAll = (arr: string[]) => arr.map((str) => slugifyStr(str));