removed another post, changed another 3703e6f6
Steve · 2023-02-27 22:16 2 file(s) · +2 −13
.gitignore +2 −1
22 22
# misc
23 23
*.pem
24 24
.cache
25 -
.astro
25 +
.astro
26 +
.vercel
src/content/post/unique-tags.md (deleted) +0 −12
1 -
---
2 -
title: "Unique tags validation"
3 -
publishDate: "30 January 2023"
4 -
description: "This post is used for validating if duplicate tags are removed, regardless of the string case"
5 -
tags: ["blog", "blog", "Blog", "test", "bloG", "Test", "BLOG"]
6 -
---
7 -
8 -
## This post is to test zod transform
9 -
10 -
If you open the file `src/content/post/unique-tags.md`, the tags array has a number of duplicate blog strings of various cases.
11 -
12 -
These are removed as part of the removeDupsAndLowercase function found in `src/content/config.ts`.