Move template management to settings (#5811)

This commit is contained in:
Tom Moor
2023-09-10 15:46:12 -04:00
committed by GitHub
parent ac068c0c07
commit 0856f5f6ae
32 changed files with 432 additions and 267 deletions

View File

@@ -1,9 +0,0 @@
import slug from "slug";
slug.defaults.mode = "rfc3986";
export default function slugify(text: string): string {
return slug(text, {
remove: /[.]/g,
});
}