This commit is contained in:
Asser Ahmed 2026-03-06 09:45:45 +08:00 committed by GitHub
commit ab80087fb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ tsconfig.tsbuildinfo
private/
.replit
replit.nix
.vscode/

View File

View File

@ -59,6 +59,7 @@ function sluggify(s: string): string {
.split("/")
.map((segment) =>
segment
.toLowerCase()
.replace(/\s/g, "-")
.replace(/&/g, "-and-")
.replace(/%/g, "-percent")